聲明:本文參考連接ide
//////////////////////////畫 坐 標 值////////////// double bin_w = (double)dstImage.cols / 256; // hdims: 條的個數,則 bin_w 爲條的寬度 double bin_u = (double)dstImage.rows / maxValue; //// max: 最高條的像素個數,則 bin_u 爲單個像素的高度 //畫縱座標刻度(像素個數) char string[10]; int kedu = 0; for (int i = 1; kedu<maxValue; i++) { kedu = i * maxValue / 10; _itoa(kedu, string, 10);//把一個整數轉換爲字符串 //在圖像中顯示文本字符串 cv::putText(dstImage, string, cvPoint(0, dstImage.rows - kedu * bin_u), cv::FONT_HERSHEY_PLAIN, 0.6, cv::Scalar(255, 255, 255)); } //畫橫座標刻度(像素灰度值) kedu = 0; for (int i = 1; kedu<256; i++) { kedu = i * 20; _itoa(kedu, string, 10);//把一個整數轉換爲字符串 //在圖像中顯示文本字符串 cv::putText(dstImage, string, cvPoint(kedu*(dstImage.cols / 256), dstImage.rows), cv::FONT_HERSHEY_PLAIN, 0.6, cv::Scalar(0, 0, 0)); }