我说的就是opencv c++,把下面的imread换成数组转换就行了,不到10行。
using namespace cv;
int main()
{
std::string image_path = "path/to/image";
Mat img = imread(image_path, IMREAD_COLOR);
imshow("Display window", img);
int k = waitKey(0); // Wait for a keystroke in the window
return 0;
}
【 在 easior 的大作中提到: 】
: 估计要看 opencv库跟哪个语言绑定
: 不同的语言绑定,编写难度差很多
--
FROM 124.127.72.*