Home
last modified time | relevance | path

Searched refs:imSize (Results 1 – 25 of 39) sorted by relevance

12

/dports/astro/stellarium/stellarium-0.21.3/util/DSSToStellarium/
H A DcreateUpperToastLevels.py24 imSize = 256 variable
60 resImg=Image.new("RGB", (imSize, imSize))
63 …open("%s/%d/%d_%d.jpg" % (outDirectory, level+1, x*2, y*2)).resize((imSize/2, imSize/2), Image.NEA…
66 …en("%s/%d/%d_%d.jpg" % (outDirectory, level+1, x*2+1, y*2)).resize((imSize/2, imSize/2), Image.NEA…
67 resImg.paste(im, (imSize/2, 0))
69 …en("%s/%d/%d_%d.jpg" % (outDirectory, level+1, x*2, y*2+1)).resize((imSize/2, imSize/2), Image.NEA…
70 resImg.paste(im, (0, imSize/2))
72 …("%s/%d/%d_%d.jpg" % (outDirectory, level+1, x*2+1, y*2+1)).resize((imSize/2, imSize/2), Image.NEA…
73 resImg.paste(im, (imSize/2, imSize/2))
/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/extsrc/com/lightcrafts/media/jai/codecimpl/
H A DBMPImageDecoder.java702 int imSize = (int)imageSize; in read24Bit() local
703 if (imSize == 0) { in read24Bit()
763 int imSize = (int)imageSize; in read16Bit() local
764 if (imSize == 0) { in read16Bit()
803 int imSize = (int)imageSize; in read32Bit() local
804 if (imSize == 0) { in read32Bit()
839 int imSize = (int)imageSize; in readRLE8() local
840 if (imSize == 0) { in readRLE8()
900 while (count != imSize) { in decodeRLE8()
956 if (imSize == 0) { in readRLE4()
[all …]
/dports/devel/itext/itext-4.2.0/core/com/lowagie/text/pdf/codec/
H A DBmpImage.java815 while (bytesRead < imSize) { in read1Bit()
817 imSize - bytesRead); in read1Bit()
862 while (bytesRead < imSize) { in read4Bit()
864 imSize - bytesRead); in read4Bit()
908 while (bytesRead < imSize) { in read8Bit()
1039 if (imSize == 0) { in read1632Bit()
1084 if (imSize == 0) { in readRLE8()
1093 imSize - bytesRead); in readRLE8()
1100 imSize = width * height; in readRLE8()
1124 if (imSize == 0) { in readRLE4()
[all …]
/dports/devel/codeblocks/codeblocks-20.03/src/plugins/contrib/FortranProject/
H A Dfpimagelist.cpp11 FPImageList::FPImageList(int imSize) in FPImageList() argument
14 CreateImageList(imSize); in FPImageList()
23 void FPImageList::CreateImageList(int imSize) in CreateImageList() argument
26 if (imSize <= 19) in CreateImageList()
31 else if (imSize <= 23) in CreateImageList()
36 else if (imSize <= 27) in CreateImageList()
41 else if (imSize <= 31) in CreateImageList()
46 else if (imSize <= 39) in CreateImageList()
51 else if (imSize <= 47) in CreateImageList()
56 else if (imSize <= 55) in CreateImageList()
[all …]
H A Dfpimagelist.h19 FPImageList(int imSize);
26 void CreateImageList(int imSize);
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/xfeatures2d/src/
H A Dtbmr.cpp95 uint imSize = (uint)rs * cs; in calcMinMaxTree() local
102 AutoBuffer<uint> zparb(imSize); in calcMinMaxTree()
103 AutoBuffer<uint> rootb(imSize); in calcMinMaxTree()
104 AutoBuffer<uint> rankb(imSize); in calcMinMaxTree()
110 AutoBuffer<bool> dejaVub(imSize); in calcMinMaxTree()
118 for (int i = imSize - 1; i >= 0; --i) in calcMinMaxTree()
192 uint imSize = image.cols * image.rows; in calculateTBMRs() local
212 for (uint i = 0; i < imSize; ++i) in calculateTBMRs()
232 AutoBuffer<uint> numSonsb(imSize); in calculateTBMRs()
242 for (int i = imSize - 1; i >= 0; --i) in calculateTBMRs()
[all …]
/dports/astro/py-ro/RO-3.6.9/python/RO/Astro/
H A DImageWindow.py33 imSize, argument
37 if len(imSize) != 2:
38 raise ValueError("imSize must be two integers; imSize = %r" % (imSize,))
39 self.imSize = tuple([int(mc) for mc in imSize])
58 imUR = [(imLL[ind] + imSize[ind] - 1) for ind in range(2)]
169 ci = ImageWindow(imSize=(2045, 1024))
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Core/Mesh/test/
H A DitkTriangleMeshToBinaryImageFilterTest.cxx90 ImageType::SizeType imSize; imSize[0] = imSize[1] = imSize[2] = 100; in itkTriangleMeshToBinaryImageFilterTest() local
91 im->SetRegions(imSize); in itkTriangleMeshToBinaryImageFilterTest()
H A DitkTriangleMeshToBinaryImageFilterTest1.cxx51 ImageType::SizeType imSize; in itkTriangleMeshToBinaryImageFilterTest1() local
52 imSize.Fill(100); in itkTriangleMeshToBinaryImageFilterTest1()
53 im->SetRegions(imSize); in itkTriangleMeshToBinaryImageFilterTest1()
H A DitkTriangleMeshToBinaryImageFilterTest3.cxx151 const ImageType::SizeType& imSize = imageFilter->GetSize(); in itkTriangleMeshToBinaryImageFilterTest3() local
152 if((imSize[0] != size[0])&&(imSize[1] != size[1])&&(imSize[2] != size[2])) in itkTriangleMeshToBinaryImageFilterTest3()
/dports/graphics/krita/krita-4.4.8/plugins/tools/tool_smart_patch/
H A Dkis_inpaint.cpp164 saveToDevice(dbout, imSize); in DebugDump()
537 for (int y = 0; y < imSize.height(); y++) { in initialize()
576 QRect imSize; member in NearestNeighborField
585 imSize = input->size(); in NearestNeighborField()
586 field.resize(boost::extents[imSize.width()][imSize.height()]); in NearestNeighborField()
594 for (int y = 0; y < imSize.height(); y++) { in randomize()
607 float xscale = qreal(imSize.width()) / nnf.imSize.width(); in initialize()
608 float yscale = qreal(imSize.height()) / nnf.imSize.height(); in initialize()
610 for (int y = 0; y < imSize.height(); y++) { in initialize()
628 int max_x = imSize.width() - 1; in minimize()
[all …]
/dports/mail/phplist/phplist-3.6.6/public_html/lists/admin/
H A Dimage.php22 $imSize = getimagesizefromstring($imageContent); variable
23 $sizeW = $imSize[0];
24 $sizeH = $imSize[1];
40 header('Content-type: '.$imSize['mime']);
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.desktop/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageReader.java1502 int imSize = (int)imageSize; in readRLE8() local
1503 if (imSize == 0) { in readRLE8()
1516 byte values[] = new byte[imSize]; in readRLE8()
1567 private void decodeRLE8(int imSize, in decodeRLE8() argument
1580 while ((count + 1) < imSize) { in decodeRLE8()
1667 if (count < imSize) { in decodeRLE8()
1686 int imSize = (int)imageSize; in readRLE4() local
1687 if (imSize == 0) { in readRLE4()
1760 private void decodeRLE4(int imSize, in decodeRLE4() argument
1772 while ((count + 1) < imSize) { in decodeRLE4()
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.desktop/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageReader.java1502 int imSize = (int)imageSize; in readRLE8() local
1503 if (imSize == 0) { in readRLE8()
1516 byte[] values = new byte[imSize]; in readRLE8()
1567 private void decodeRLE8(int imSize, in decodeRLE8() argument
1580 while ((count + 1) < imSize) { in decodeRLE8()
1667 if (count < imSize) { in decodeRLE8()
1686 int imSize = (int)imageSize; in readRLE4() local
1687 if (imSize == 0) { in readRLE4()
1760 private void decodeRLE4(int imSize, in decodeRLE4() argument
1772 while ((count + 1) < imSize) { in decodeRLE4()
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.desktop/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageReader.java1502 int imSize = (int)imageSize; in readRLE8() local
1503 if (imSize == 0) { in readRLE8()
1516 byte values[] = new byte[imSize]; in readRLE8()
1567 private void decodeRLE8(int imSize, in decodeRLE8() argument
1580 while ((count + 1) < imSize) { in decodeRLE8()
1667 if (count < imSize) { in decodeRLE8()
1686 int imSize = (int)imageSize; in readRLE4() local
1687 if (imSize == 0) { in readRLE4()
1760 private void decodeRLE4(int imSize, in decodeRLE4() argument
1772 while ((count + 1) < imSize) { in decodeRLE4()
[all …]
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.desktop/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageReader.java1495 int imSize = (int)imageSize; in readRLE8() local
1496 if (imSize == 0) { in readRLE8()
1509 byte[] values = new byte[imSize]; in readRLE8()
1560 private void decodeRLE8(int imSize, in decodeRLE8() argument
1573 while ((count + 1) < imSize) { in decodeRLE8()
1660 if (count < imSize) { in decodeRLE8()
1679 int imSize = (int)imageSize; in readRLE4() local
1680 if (imSize == 0) { in readRLE4()
1753 private void decodeRLE4(int imSize, in decodeRLE4() argument
1765 while ((count + 1) < imSize) { in decodeRLE4()
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.desktop/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageReader.java1502 int imSize = (int)imageSize; in readRLE8() local
1503 if (imSize == 0) { in readRLE8()
1516 byte[] values = new byte[imSize]; in readRLE8()
1567 private void decodeRLE8(int imSize, in decodeRLE8() argument
1580 while ((count + 1) < imSize) { in decodeRLE8()
1667 if (count < imSize) { in decodeRLE8()
1686 int imSize = (int)imageSize; in readRLE4() local
1687 if (imSize == 0) { in readRLE4()
1760 private void decodeRLE4(int imSize, in decodeRLE4() argument
1772 while ((count + 1) < imSize) { in decodeRLE4()
[all …]
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.desktop/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageReader.java1495 int imSize = (int)imageSize; in readRLE8() local
1496 if (imSize == 0) { in readRLE8()
1509 byte[] values = new byte[imSize]; in readRLE8()
1560 private void decodeRLE8(int imSize, in decodeRLE8() argument
1573 while ((count + 1) < imSize) { in decodeRLE8()
1660 if (count < imSize) { in decodeRLE8()
1679 int imSize = (int)imageSize; in readRLE4() local
1680 if (imSize == 0) { in readRLE4()
1753 private void decodeRLE4(int imSize, in decodeRLE4() argument
1765 while ((count + 1) < imSize) { in decodeRLE4()
[all …]
/dports/science/InsightToolkit/ITK-5.0.1/Examples/Filtering/
H A DDigitallyReconstructedRadiograph1.cxx498 InputImageSizeType imSize = imRegion.GetSize(); in main() local
500 imOrigin[0] += imRes[0] * static_cast<double>( imSize[0] ) / 2.0; in main()
501 imOrigin[1] += imRes[1] * static_cast<double>( imSize[1] ) / 2.0; in main()
502 imOrigin[2] += imRes[2] * static_cast<double>( imSize[2] ) / 2.0; in main()
514 << imSize[0] << ", " << imSize[1] << ", " << imSize[2] in main()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.desktop/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageReader.java1501 int imSize = (int)imageSize; in readRLE8() local
1502 if (imSize == 0) { in readRLE8()
1515 byte[] values = new byte[imSize]; in readRLE8()
1566 private void decodeRLE8(int imSize, in decodeRLE8() argument
1579 while ((count + 1) < imSize) { in decodeRLE8()
1666 if (count < imSize) { in decodeRLE8()
1685 int imSize = (int)imageSize; in readRLE4() local
1686 if (imSize == 0) { in readRLE4()
1759 private void decodeRLE4(int imSize, in decodeRLE4() argument
1771 while ((count + 1) < imSize) { in decodeRLE4()
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.desktop/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageReader.java1508 int imSize = (int)imageSize; in readRLE8() local
1509 if (imSize == 0) { in readRLE8()
1522 byte[] values = new byte[imSize]; in readRLE8()
1573 private void decodeRLE8(int imSize, in decodeRLE8() argument
1586 while ((count + 1) < imSize) { in decodeRLE8()
1673 if (count < imSize) { in decodeRLE8()
1692 int imSize = (int)imageSize; in readRLE4() local
1693 if (imSize == 0) { in readRLE4()
1766 private void decodeRLE4(int imSize, in decodeRLE4() argument
1778 while ((count + 1) < imSize) { in decodeRLE4()
[all …]
/dports/graphics/cfdg/cfdg-3.3_1/src-scintilla/cocoa/ScintillaTest/
H A DAppController.mm247 const int imSize = 12;
248 [mEditor setGeneralProperty: SCI_RGBAIMAGESETWIDTH parameter: imSize value:0];
249 [mEditor setGeneralProperty: SCI_RGBAIMAGESETHEIGHT parameter: imSize value:0];
250 char image[imSize * imSize * 4];
251 for (size_t y = 0; y < imSize; y++) {
252 for (size_t x = 0; x < imSize; x++) {
253 char *p = image + (y * imSize + x) * 4;
/dports/x11-toolkits/scintilla/scintilla/cocoa/ScintillaTest/
H A DAppController.mm247 const int imSize = 12;
248 [mEditor setGeneralProperty: SCI_RGBAIMAGESETWIDTH parameter: imSize value:0];
249 [mEditor setGeneralProperty: SCI_RGBAIMAGESETHEIGHT parameter: imSize value:0];
250 char image[imSize * imSize * 4];
251 for (size_t y = 0; y < imSize; y++) {
252 for (size_t x = 0; x < imSize; x++) {
253 char *p = image + (y * imSize + x) * 4;
/dports/editors/textadept/scintilla/cocoa/ScintillaTest/
H A DAppController.mm247 const int imSize = 12;
248 [mEditor setGeneralProperty: SCI_RGBAIMAGESETWIDTH parameter: imSize value:0];
249 [mEditor setGeneralProperty: SCI_RGBAIMAGESETHEIGHT parameter: imSize value:0];
250 char image[imSize * imSize * 4];
251 for (size_t y = 0; y < imSize; y++) {
252 for (size_t x = 0; x < imSize; x++) {
253 char *p = image + (y * imSize + x) * 4;
/dports/editors/scite/scintilla/cocoa/ScintillaTest/
H A DAppController.mm247 const int imSize = 12;
248 [mEditor setGeneralProperty: SCI_RGBAIMAGESETWIDTH parameter: imSize value:0];
249 [mEditor setGeneralProperty: SCI_RGBAIMAGESETHEIGHT parameter: imSize value:0];
250 char image[imSize * imSize * 4];
251 for (size_t y = 0; y < imSize; y++) {
252 for (size_t x = 0; x < imSize; x++) {
253 char *p = image + (y * imSize + x) * 4;

12