-
Notifications
You must be signed in to change notification settings - Fork 41
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
Adds canny edge detection #87
Conversation
src/lib.rs
Outdated
fn into(self) -> Result<T, String> { | ||
if self.error.value.is_null() { | ||
Ok(self.value) | ||
Ok(self.value.into()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unnecessary change, but I think this makes sense?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for the PR on the first place.
I follow yagni principle so I think we don't need to add it until it's not required somewhere.
The format checking is failing. You are probably uses invalid |
Merge latest master. It should do the trick |
dfca5c8
to
1ed46f8
Compare
CI currently uses Don't forget to merge latest master to get correct Sorry if it looks complicated, when you get familiar with it it won't take this much time. |
59f685e
to
cc7fbd9
Compare
Oops, should have checked first. Re-pushed with correct fix. (and is rebased on |
Okay, now P.S. Sorry for this much iterations, I think I just had to link out contributing readme which contains all required links. |
cc7fbd9
to
ef9e931
Compare
- Adds an EmptyResult type and corresponding CEmptyResult - Adds error case for edge detection test
ef9e931
to
a81f45a
Compare
Okay, I've updated this PR with a failing test and returning an EmptyResult @Pzixel |
sorry, my new year finally ended :) Thank you for your PR. |
Attached to Mat instead of making it a function with an
src, dst
signature, seemed like that is the preference in this lib.