フィルターのクリア

Doubts about folders and files in matlab.

12 ビュー (過去 30 日間)
Pradeep Gowda
Pradeep Gowda 2015 年 5 月 9 日
コメント済み: Walter Roberson 2015 年 5 月 9 日
i have a script for image processing . i wanna make it run for all the images in a folder , can some one help me with this ?

採用された回答

Image Analyst
Image Analyst 2015 年 5 月 9 日
Description
This GUI will help the novice user get up to speed very quickly on using GUI-based applications. Everything is laid out in a very simple Step 1, Step 2, Step 3, etc. layout. It is a very good starting point for a typical image analysis application. This application uses GUIDE to do the user interface design, and has most of the basic controls such as buttons, listboxes, checkboxes, radio buttons, scrollbars, etc. It allows the user to select a folder of images, select one or more images and display them, to select a series of options, and to individually or batch process one or more images. The user can ..............
  2 件のコメント
Pradeep Gowda
Pradeep Gowda 2015 年 5 月 9 日
Thanx. now i wanna save all these processed images in a new folder say "processed" . how can i achieve this ?
Walter Roberson
Walter Roberson 2015 年 5 月 9 日
copyfile(FILENAME, PATH_TO_NEW_DIRECTORY)
But probably better is that when you are going to imwrite() the processed image, that you use fullfile() to construct the destination as being directly in the new directory. For example,
destdirectory = 'C:\Documents and Settings\Pradeep\Processed';
thisimage = 'skidoo023.jpg';
fulldestination = fullfile(destdirectory, thisimage);
imwrite(TheData, fulldestination);

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeConvert Image Type についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by