#include <HxBlob2dTiedSvt.h>
Inheritance diagram for HxBlob2dTiedSvt::
|
|
|
|
|
|
|
|
|
|
|
|
|
00020 : HxBlob2d(obj) 00021 { 00022 } |
|
00025 { 00026 } |
|
|
|
|
|
00030 { 00031 //HxImageRep result = HxBlob2d::getInputImage(); 00032 HxImageRep result; 00033 return HxRegisterTiedServant<HxImageRepTiedSvt>(result); 00034 } |
|
00038 { 00039 //HxImageRep result = HxBlob2d::getLabeledImage(); 00040 HxImageRep result; 00041 return HxRegisterTiedServant<HxImageRepTiedSvt>(result); 00042 } |
|
00046 { 00047 return 0; 00048 } |
|
00052 { 00053 return 0; 00054 } |
|
00058 { 00059 return 0; 00060 } |
|
00064 { 00065 //int nCodes = HxBlob2d::getContourLength(); 00066 int nCodes = 0; 00067 CORBA::Long* data = new CORBA::Long[nCodes]; 00068 //HxBlob2d::getContourCodes((int*)data); 00069 00070 HxCorba::ContourCodeSeq* seq = 00071 new HxCorba::ContourCodeSeq(nCodes, nCodes, data, true); 00072 00073 return seq; 00074 } |
|
00078 { 00079 /* 00080 HxScalarInt width = HxBlob2d::getFeature("width"); 00081 HxScalarInt height = HxBlob2d::getFeature("height"); 00082 int nPixels = width.x() * height.x(); 00083 */ 00084 int nPixels = 0; 00085 00086 HxRgbBuffer tempBuf(buf, nPixels); 00087 //HxBlob2d::getRgbPixels(tempBuf.getBuffer()); 00088 } |
|
00092 { 00093 HxValue val = HxBlob2d::getFeatureValue(name); 00094 return HxConvertValue(val); 00095 } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|