Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for Error: linking with link.exe failed: exit code: 1120 #51

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,6 @@ approx = "0.4"
noisy_float = "0.2"
png = "0.16"
ndarray-linalg = { version = "0.14", features = ["intel-mkl"] }
# it is a dependency of intel-mkl-tool, we pin it to temporary solve
# https://github.com/rust-math/intel-mkl-src/issues/68
anyhow = "<1.0.49"
42 changes: 20 additions & 22 deletions examples/basic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,34 +4,32 @@ use ndarray_vision::format::netpbm::*;
use ndarray_vision::format::*;
use ndarray_vision::processing::*;
use std::env::current_exe;
use std::path::PathBuf;
use std::path::{Path, PathBuf};

fn main() {
if let Ok(mut root) = current_exe() {
root.pop();
root.pop();
root.pop();
root.pop();
let mut lena = PathBuf::from(&root);
lena.push("images/lena.ppm");
let root = Path::new(env!("CARGO_MANIFEST_DIR"));
let mut cameraman = root.clone().join("images/cameraman.ppm");
println!("{:?}", cameraman);

let decoder = PpmDecoder::default();
let image: Image<u8, _> = decoder.decode_file(lena).expect("Couldn't open Lena.ppm");
let decoder = PpmDecoder::default();
let image: Image<u8, _> = decoder
.decode_file(cameraman)
.expect("Couldn't open cameraman.ppm");

let boxkern: Array3<f64> =
BoxLinearFilter::build(Ix3(3, 3, 3)).expect("Was unable to construct filter");
let boxkern: Array3<f64> =
BoxLinearFilter::build(Ix3(3, 3, 3)).expect("Was unable to construct filter");

let mut image: Image<f64, _> = image.into_type();
let mut image: Image<f64, _> = image.into_type();

let _ = image
.conv2d_inplace(boxkern.view())
.expect("Poorly sized kernel");
// There's no u8: From<f64> so I've done this to hack things
let _ = image
.conv2d_inplace(boxkern.view())
.expect("Poorly sized kernel");
// There's no u8: From<f64> so I've done this to hack things

let mut lena = PathBuf::from(&root);
lena.push("images/lenablur.ppm");
let mut cameraman = PathBuf::from(&root);
cameraman.push("images/cameramanblur.ppm");

let ppm = PpmEncoder::new_plaintext_encoder();
ppm.encode_file(&image, lena).expect("Unable to encode ppm");
}
let ppm = PpmEncoder::new_plaintext_encoder();
ppm.encode_file(&image, cameraman)
.expect("Unable to encode ppm");
}
21 changes: 12 additions & 9 deletions examples/edges.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,13 @@ fn main() {
root.pop();
root.pop();
root.pop();
let mut lena = PathBuf::from(&root);
lena.push("images/lena.ppm");
let mut cameraman = PathBuf::from(&root);
cameraman.push("images/cameraman.ppm");

let decoder = PpmDecoder::default();
let image: Image<u8, _> = decoder.decode_file(lena).expect("Couldn't open Lena.ppm");
let image: Image<u8, _> = decoder
.decode_file(cameraman)
.expect("Couldn't open cameraman.ppm");

let image: Image<f64, _> = image.into_type();
let image: Image<_, Gray> = image.into();
Expand All @@ -36,15 +38,16 @@ fn main() {
let image = image.apply_sobel().expect("Error in sobel");
// back to RGB
let image: Image<_, RGB> = image.into();
let mut lena = PathBuf::from(&root);
lena.push("images/lena-sobel.ppm");
let mut cameraman = PathBuf::from(&root);
cameraman.push("images/cameraman-sobel.ppm");

let ppm = PpmEncoder::new_plaintext_encoder();
ppm.encode_file(&image, lena).expect("Unable to encode ppm");
ppm.encode_file(&image, cameraman)
.expect("Unable to encode ppm");

let mut lena = PathBuf::from(&root);
lena.push("images/lena-canny.ppm");
ppm.encode_file(&canny.into(), lena)
let mut cameraman = PathBuf::from(&root);
cameraman.push("images/cameraman-canny.ppm");
ppm.encode_file(&canny.into(), cameraman)
.expect("Unable to encode ppm");
}
}
20 changes: 11 additions & 9 deletions examples/transforms.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,37 +9,39 @@ use std::fs::File;
use std::io::BufWriter;
use std::path::{Path, PathBuf};

fn get_lena() -> Option<Image<u8, RGB>> {
fn get_cameraman() -> Option<Image<u8, RGB>> {
if let Ok(mut root) = current_exe() {
root.pop();
root.pop();
root.pop();
root.pop();
let mut lena = PathBuf::from(&root);
lena.push("images/lena.ppm");
let mut cameraman = PathBuf::from(&root);
cameraman.push("images/cameraman.ppm");

let decoder = PpmDecoder::default();
let image: Image<u8, _> = decoder.decode_file(lena).expect("Couldn't open Lena.ppm");
let image: Image<u8, _> = decoder
.decode_file(cameraman)
.expect("Couldn't open cameraman.ppm");
Some(image)
} else {
None
}
}

fn main() {
let lena = get_lena().expect("Couldn't load lena");
let cameraman = get_cameraman().expect("Couldn't load cameraman");

// Create transformation matrix
let x = 0.5 * (lena.cols() as f64) - 0.5;
let y = 0.5 * (lena.rows() as f64) - 0.5;
let x = 0.5 * (cameraman.cols() as f64) - 0.5;
let y = 0.5 * (cameraman.rows() as f64) - 0.5;
let trans = rotate_around_centre(FRAC_PI_4, (x, y)).dot(&scale(0.7, 0.7));

let transformed = lena
let transformed = cameraman
.transform(trans.view(), None)
.expect("Transform failed");

// save
let path = Path::new("transformed_lena.png");
let path = Path::new("transformed_cameraman.png");
let file = File::create(path).expect("Couldn't create output file");
let ref mut w = BufWriter::new(file);

Expand Down
13,906 changes: 13,906 additions & 0 deletions images/cameraman.ppm

Large diffs are not rendered by default.

541 changes: 0 additions & 541 deletions images/lena.ppm

This file was deleted.

Binary file added images/peppers.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.