第一次提交
This commit is contained in:
28
rust/iris_rust/src/main.rs
Normal file
28
rust/iris_rust/src/main.rs
Normal 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!");
|
||||
}
|
Reference in New Issue
Block a user