|
| Mat | addNoisePC (Mat pc, double scale) |
| |
| void | computeBboxStd (Mat pc, Vec2f &xRange, Vec2f &yRange, Vec2f &zRange) |
| |
| int | computeNormalsPC3d (const Mat &PC, Mat &PCNormals, const int NumNeighbors, const bool FlipViewpoint, const Vec3f &viewpoint) |
| | 任意の点群の法線を計算する。computeNormalsPC3dは、局所法線を滑らかに計算するために平面フィッティング手法を用いる。法線は、最小の固有値に対応する共分散行列の固有ベクトルを通じて得られる。PCNormalsがNx6行列として与えられた場合、新たな割り当ては行われず、既存のメモリが上書きされる。
|
| |
| void | destroyFlann (void *flannIndex) |
| |
| void | getRandomPose (Matx44d &Pose) |
| |
| hashtable_int * | hashtable_int_clone (hashtable_int *hashtbl) |
| |
| hashtable_int * | hashtableCreate (size_t size, size_t(*hashfunc)(uint)) |
| |
| void | hashtableDestroy (hashtable_int *hashtbl) |
| |
| void * | hashtableGet (hashtable_int *hashtbl, KeyType key) |
| |
| hashnode_i * | hashtableGetBucketHashed (hashtable_int *hashtbl, KeyType key) |
| |
| int | hashtableInsert (hashtable_int *hashtbl, KeyType key, void *data) |
| |
| int | hashtableInsertHashed (hashtable_int *hashtbl, KeyType key, void *data) |
| |
| void | hashtablePrint (hashtable_int *hashtbl) |
| |
| hashtable_int * | hashtableRead (FILE *f) |
| |
| int | hashtableRemove (hashtable_int *hashtbl, KeyType key) |
| |
| int | hashtableResize (hashtable_int *hashtbl, size_t size) |
| |
| int | hashtableWrite (const hashtable_int *hashtbl, const size_t dataSize, FILE *f) |
| |
| void * | indexPCFlann (Mat pc) |
| |
| Mat | loadPLYSimple (const char *fileName, int withNormals=0) |
| | PLYファイルを読み込む。
|
| |
| static uint | next_power_of_two (uint value) |
| | 次に大きい2のべき乗に切り上げる。
|
| |
| Mat | normalizePCCoeff (Mat pc, float scale, float *Cx, float *Cy, float *Cz, float *MinVal, float *MaxVal) |
| |
| void | queryPCFlann (void *flannIndex, Mat &pc, Mat &indices, Mat &distances) |
| |
| void | queryPCFlann (void *flannIndex, Mat &pc, Mat &indices, Mat &distances, const int numNeighbors) |
| |
| Mat | samplePCByQuantization (Mat pc, Vec2f &xrange, Vec2f &yrange, Vec2f &zrange, float sample_step_relative, int weightByCenter=0) |
| |
| Mat | samplePCUniform (Mat PC, int sampleStep) |
| |
| Mat | samplePCUniformInd (Mat PC, int sampleStep, std::vector< int > &indices) |
| |
| Mat | transformPCPose (Mat pc, const Matx44d &Pose) |
| |
| Mat | transPCCoeff (Mat pc, float scale, float Cx, float Cy, float Cz, float MinVal, float MaxVal) |
| |
| void | writePLY (Mat PC, const char *fileName) |
| | 点群をPLYファイルに書き込む。
|
| |
| void | writePLYVisibleNormals (Mat PC, const char *fileName) |
| | デバッグ目的で使用され、法線ベクトルの先端を可視の赤い点として持つ点群をPLYファイルに書き込む。
|
| |