前提・実現したいこと
同じ大きさの370枚の画像からそれぞれの画素の中央値を取り出し、それを出力画像に書き込みたい。
発生している問題・エラーメッセージ
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 480 640 ok Segmentation fault
該当のソースコード
c++
1#include<stdio.h> 2#include <opencv2/core.hpp> 3#include<opencv2/opencv.hpp> 4#include <opencv2/videoio.hpp> // videoioのヘッダーをインクルード 5#include <opencv2/highgui.hpp> // highguiのヘッダーをインクルード 6#include <iostream> 7#include <string> 8#include <fstream> 9#include <sstream> 10 11using namespace cv; 12using namespace std; 13 14int pivot(int a[] ,int i,int j){ 15 int k=i+1; 16 while(k<=j && a[i]==a[k]) k++; 17 if(k>j) return -1; 18 if(a[i]>=a[k]) return i; 19 return k; 20} 21 22 int partition(int a[] ,int i,int j,int x){ 23 int l=i,r=j; 24 25 // 検索が交差するまで繰り返します 26 while(l<=r){ 27 28 // 軸要素以上のデータを探します 29 while(l<=j && a[l]<x) l++; 30 31 // 軸要素未満のデータを探します 32 while(r>=i && a[r]>=x) r--; 33 34 if(l>r) break; 35 int t=a[l]; 36 a[l]=a[r]; 37 a[r]=t; 38 l++; r--; 39 } 40 return l; 41 } 42 43void quickSort(int a[] ,int i,int j){ 44 if(i==j) return; 45 46 int p=pivot(a,i,j); 47 if(p!=-1){ 48 int k=partition(a,i,j,a[p]); 49 quickSort(a,i,k-1); 50 quickSort(a,k,j); 51 } 52 } 53 54int main(void){ 55 56 57 Mat scene[370]; 58 59 for(int i = 0 ; i < 370 ; i++){ 60 string s; 61 ostringstream oss; 62 oss << i + 1; 63 s = oss.str(); 64 oss.str(""); //ostringstreamの内容をクリア 65 66 scene[i] = imread("../motopi/img" + s + ".jpg",IMREAD_UNCHANGED); 67 printf("%d ",i); 68 if(!scene[i].data) break; 69 } 70 printf("\n"); 71 Mat hsv_scene[370]; 72 for(int i = 0 ; i < 370 ; i++){ 73 cvtColor(scene[i], hsv_scene[i], cv::COLOR_BGR2HSV); 74 } 75 76 Mat dst; 77 78 int ***a; 79 a = (int ***)malloc(sizeof (int**) * hsv_scene[0].rows); 80 for(int i = 0; i < hsv_scene[0].rows; i++){ 81 a[i] = (int **)malloc(sizeof (int*) * hsv_scene[0].cols); 82 for(int j = 0; j < hsv_scene[0].cols; j++){ 83 a[i][j] = (int *)malloc(sizeof (int) * 370); 84 } 85 } 86 printf("%d %d ",hsv_scene[0].rows,hsv_scene[0].cols); 87 for(int y = 0 ; y < hsv_scene[0].rows ; y++){ 88 for(int x = 0 ; x < hsv_scene[0].cols ; x++){ 89 for(int i = 0 ; i < 370 ; i++){ 90 a[y][x][i]=hsv_scene[i].at<unsigned char>(y, x); 91 92 } 93 } 94 } 95 96 printf("ok\n"); 97 98 for(int y = 0 ; y < hsv_scene[0].rows ; y++){ 99 printf("%d ",y); 100 for(int x = 0 ; x < hsv_scene[0].cols ; x++){ 101 quickSort(a[y][x],0,369); 102 dst.at<unsigned char>(y, x)=a[y][x][(370/2)+1]; 103 } 104 } 105 106 imshow("median",dst); 107 imwrite("median.jpg",dst); 108 for (int i=0;i<hsv_scene[0].rows;i++) { 109 for (int j=0;j<hsv_scene[0].cols;j++) { 110 free(a[i][j]); 111 } 112 free(a[i]); 113 } 114 free(a); 115 waitKey(0); 116 destroyWindow("median"); 117 118 return 0; 119} 120
試したこと
quickSort()のところで問題があったのかなと思い、試しに、3次元配列や大量の要素がある配列でソートするプログラムは作ったがそっちは普通に動いた。
補足情報(FW/ツールのバージョンなど)
g++のバージョンは4.9.2 opencvのバージョンは3.0.0
回答1件
あなたの回答
tips
プレビュー