Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Android 上使用 OpenCV。但功能:
Core.inRange(img, new Scalar(127, 127, 127), new Scalar(127, 127, 127), img);
在第二次调用“致命信号 8 (SIGFPE) at 0x00002a01 (code=0)”时崩溃?
那次崩溃不应该发生,可能是一个错误。
但我认为用相同的值设置下限和上限没有意义,您应该选择一些有意义且在img维度内的值。
还要确保img或您在最后一个参数中使用的任何 Mat 类型为 CV_8U。