How to store Image data after preprocessing for further processing
조회 수: 2 (최근 30일)
이전 댓글 표시
I am trying to extract fruit features for recognition purpose. I have done all the preprocessing. but how can I store this preprocessed data so as to use it for furthur processing.
댓글 수: 1
Rana Muayad
2020년 12월 28일
i have the same problem
i keep all process image as array and store it in file.dat
but this file not accepted in the next stage (cnn for classification image)
i need solution to my problem?
답변 (1개)
Rashedur Rahman
2020년 3월 26일
I don't understand what you meant by 'store'. But a few suggestions are mentioned below
(1)You can write the processed image as a new image using 'imwrite' function (https://www.mathworks.com/help/matlab/ref/imwrite.html). Read the saved image using 'imread' funciton when necessary (https://www.mathworks.com/help/matlab/ref/imread.html)
(2) If you want to keep all the processed images in the workspace, you can put those in a cell array.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!