HALCON error #1201: Wrong type of control parameter: 1 in operator threshold

 HALCON error #1201: Wrong type of control parameter: 1 in operator threshold
错误代码:
 HTuple tMin, tMax;
    tMin.Append(3).Append(5.5);
    tMax.Append(4.0).Append(8);
    Hobject region;
    Halcon::threshold(img, &region,tMin, tMax);
错误原因:
 tMin各元素类型不一致,改成一致就好了。
修改后:
HTuple tMin, tMax;
    tMin.Append(3).Append(5);
    tMax.Append(4.0).Append(8.0);
    Hobject region;
    Halcon::threshold(img, &region,tMin, tMax);
开发环境:
VS2013、Win10

上一篇:数据库的优化(表优化和sql语句优化)


下一篇:Java类和对象 详解(一)---写的很好通俗易懂---https://blog.csdn.net/wei_zhi/article/details/52745268