第一次提交

This commit is contained in:
xin
2025-06-12 09:35:09 +08:00
commit 1aba741f67
16 changed files with 27886 additions and 0 deletions

View File

@ -0,0 +1,28 @@
use iris_rust::examples::{
spectral_data_roundtrip,
spectral_info_roundtrip,
other_info_roundtrip,
image_info_roundtrip,
read_iris_file_example
};
fn main() {
// println!("Running iris_rust examples...");
// println!("\nTesting spectral data...");
// spectral_data_roundtrip();
// println!("\nTesting spectral info...");
// spectral_info_roundtrip();
// println!("\nTesting other info...");
// other_info_roundtrip();
// println!("\nTesting image info...");
// image_info_roundtrip();
println!("\nReading IRIS file...");
read_iris_file_example();
println!("\nAll examples completed successfully!");
}