图像处理——(源)最大熵阈值分割(Max_Entropy)函数编程实现
摘要:
1 #include 2 #include 3 #include 4 #include 5 6 7 int Max_Entropy(cv::Mat& src, cv::Mat& dst, int thresh, int p){ 8 const int Grayscale = 256; 9 int Graynum[Grayscale... 阅读全文
posted @ 2019-07-20 21:42 AI大道理 阅读(1215) 评论(0) 推荐(0) 编辑