编辑:
Hii,不好意思前面没有提到,我需要做的是在同一个图中同时显示 6 个图像。此外,在每个图像(帧)上,我需要绘制一些点(我的代码跟踪脸部的移动 - 眼睛、鼻子、嘴唇。) 我有 246 张图像(帧)
这是我使用的主要功能:
// The points/ coordinates of the lips, eyes and nose of the image "i".
Points = createPointsStructure (landmarks , i , NumOfLandarkPerFrame);
// Draw landmarks and splines on the frame i (and draw/show the frame)
DrawAllPointsOnFace (pointArr , Points , img , 1 , position, i);
有什么想法我该怎么做?
我需要编写一个代码,在同一个图中(同时)显示 6 个图像。并让用户选择其中一个图像进行编辑(通过单击它)。
任何帮助我该怎么做?
提前致谢。