c++でセグメンテーションマップから取得した値を(0~3)でunit8_tで定義したリストにアクセスしようとすると文字化けします。
uint_8にアクセスてseg_MapをRGB化したいのですが、なぜ文字化けするのでしょうか?
正確にアクセスして数字を取得する方法を教えていただけないでしょうか?
loadする画像(img_test/test_000.png)
sh
1shape(224, 224) 2min 0 3max3
c++
1#include <iostream> 2#include <opencv2/opencv.hpp> 3#include <unistd.h> 4#include <vector> 5#define IMG_DIR "./img_test/test_000.png" 6#define IMAGE_WIDTH 224 7#define IMAGE_HEIGHT 224 8using namespace std; 9using namespace cv; 10const auto size = cv::Size(IMAGE_WIDTH, IMAGE_HEIGHT); 11uint8_t colorB[] = {128, 232, 70, 156, 153, 153, 30, 0, 35, 152, 12 180, 60, 0, 142, 70, 100, 100, 230, 32}; 13uint8_t colorG[] = {64, 35, 70, 102, 153, 153, 170, 220, 142, 251, 14 130, 20, 0, 0, 0, 60, 80, 0, 11}; 15uint8_t colorR[] = {128, 244, 70, 102, 190, 153, 250, 220, 107, 152, 16 70, 220, 255, 0, 0, 0, 0, 0, 119}; 17 18int main() 19{ 20 cv::Mat input_image; 21 float *result = new float[IMAGE_WIDTH*IMAGE_WIDTH]; 22 input_image = cv::imread(IMG_DIR, 0); 23 Mat segMat(IMAGE_WIDTH, IMAGE_HEIGHT, CV_8UC3); 24 cv::Mat image; 25 double min, max; 26 cv::resize(input_image, image, size, cv::INTER_NEAREST); 27 for (int row = 0; row < IMAGE_WIDTH; row++) { 28 for (int col = 0; col < IMAGE_HEIGHT; col++) { 29 int i = row * IMAGE_WIDTH * 4 + col * 4; 30 auto max_ind = max_element(result + i, result + i + 4); 31 int pos = distance(result + i, max_ind); 32 cout << "B: " << colorB[pos] << endl; 33 cout << "G: " << colorG[pos] << endl; 34 cout << "R: " << colorR[pos] << endl; 35 //segMat.at<Vec3b>(row, col) = Vec3b(colorB[pos], colorG[pos], colorR[pos]); 36 } 37 } 38 //cout << "Widt : " << segMat.cols << endl; 39 cout << "Height: " << segMat.size() << endl; 40 delete result; 41}
コンパイル
sh
1$ g++ -std=c++11 np.cpp -o np `pkg-config --cflags opencv` `pkg-config --libs opencv` 2 3$ ./np 4 5>>>> 6 7〜 8B: ? 9G: @ 10R: ? 11B: ? 12G: @ 13R: ? 14B: ? 15G: @ 16R: ? 17B: ? 18G: @ 19R: ? 20Segmentation fault
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/20 04:22
2020/09/20 04:26 編集
2020/09/20 04:41