代码搜索:converting

找到约 1,282 项符合「converting」的源代码

代码结果 1,282
www.eeworm.com/read/261221/11657858

m degrade.m

function ifbl = degrade(im, LEN, THETA, noisetype, M, V) %Function to degrade image %Inputs: im, LEN, THETA, Noise type, M & V %Returns: ifbl % %Description: %im: It is the input image %LEN:
www.eeworm.com/read/221024/14772524

html http:^^www.cs.washington.edu^research^projects^weird^www^cooldraw-uist-93.html

Date: Tue, 10 Dec 1996 03:25:21 GMT Server: NCSA/1.4.2 Content-type: text/html Converting an Existing User Interface to Use Constraints Converting an
www.eeworm.com/read/415537/11065057

txt translating binary to text.txt

Translating Binary to Text: The Hard Way A Tutorial for those willing to Learn Contents 1. Introduction 2. The Binary System 3. Converting Binary to ASCII (Text) Introduction: We抳e all see
www.eeworm.com/read/127767/14335908

txt e079. converting between unicode and utf-8.txt

try { // Convert from Unicode to UTF-8 String string = "abc\u5639\u563b"; byte[] utf8 = string.getBytes("UTF-8"); // Convert from UTF-8 to Unicode st
www.eeworm.com/read/127767/14336087

txt e1027. converting a node in a jtree component to a treepath.txt

// If expanded, return only paths of nodes that are expanded. public TreePath[] getPaths(JTree tree, boolean expanded) { TreeNode root = (TreeNode)tree.getModel().getRoot();
www.eeworm.com/read/127767/14336346

txt e078. converting a primitive type value to a string.txt

There are two ways to convert a primitive type value into a string. The explicit way is to call String.valueOf(). The implicit way is to use the string concatenation operator `+'. // Use String.
www.eeworm.com/read/127767/14336485

txt e676. converting a colored buffered image to gray.txt

ColorSpace cs = ColorSpace.getInstance(ColorSpace.CS_GRAY); ColorConvertOp op = new ColorConvertOp(cs, null); bufferedImage = op.filter(bufferedImage, null);
www.eeworm.com/read/127767/14337002

txt e512. converting an xml fragment into a dom fragment.txt

This example demonstrates how to parse an XML string fragment into a set of nodes suitable for insertion into a DOM document. // Parses a string containing XML and returns a DocumentFragment
www.eeworm.com/read/127767/14337072

txt e585. converting between rgb and hsb colors.txt

This example demonstrates how to convert between a color value in RGB (three integer values in the range 0 to 255 representing red, green, and blue) and HSB (three floating point values in the range 0
www.eeworm.com/read/127767/14337300

txt e077. converting a string to upper or lower case.txt

// Convert to upper case String upper = string.toUpperCase(); // Convert to lower case String lower = string.toLowerCase(); Related Examples