what can MATLAB do with tif files
    23 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    Miraboreasu
 am 12 Aug. 2023
  
    
    
    
    
    Beantwortet: Image Analyst
      
      
 am 12 Aug. 2023
            Hi, I got lots of scan (photo) files as tif. and I read them into the array
```
folder = fileparts(which(mfilename));
tifFiles = dir(fullfile(folder, '*.tif'));
for i = 1:length(tifFiles)
    tifFileName = tifFiles(i).name;
    tifFilePath = fullfile(folder, tifFileName);
    try
        tifData = imread(tifFilePath);
        disp(['TIFF file ', tifFileName, ' read successfully.']);
    catch
        disp(['Error reading TIFF file ', tifFileName]);
    end
end
```
I want to analyze these photos, for exmaple, I want to give a coordinate to and find one object's coordinate in the photos, what package I should look at?
0 Kommentare
Akzeptierte Antwort
  Image Analyst
      
      
 am 12 Aug. 2023
        It's a generic, general purpose demo of how to threshold an image to find blobs, and then measure things about the blobs, and extract certain blobs based on their areas or diameters.
0 Kommentare
Weitere Antworten (2)
  Cris LaPierre
    
      
 am 12 Aug. 2023
        If you are new to the topic, consider the following courses
- Image Processing Onramp (Free)
- Image Processing with MATLAB
- Image Processing for Engineering and Science Specialization (3 courses, free to enroll)
- Computer Vision for Engineering and Science Specialization 3 courses, free to enroll)
0 Kommentare
  Walter Roberson
      
      
 am 12 Aug. 2023
        MATLAB can read (most) ordinary TIF files with the imread
But what you are really asking about is how you can process the file once you have read it in -- and once you have read it in then it is just a numeric array and nothing cares that it was originally a TIFF file.
0 Kommentare
Siehe auch
Kategorien
				Mehr zu MATLAB Support Package for USB Webcams finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



