Anchit Navelkar
Anchit Navelkar
@MattDahEpic were you able to find a solution? I'm getting the same error.
The type is promoted even if there is no overflow. For example - ``` julia> AZero = zeros(UInt8, 3, 3, 3); julia> typeof(sum(AZero)) UInt32 julia> ARnd = rand(UInt8, 3, 3,...
The `sum` does check for overflow if you are not summing in any particular dimension. It fails only if you give the dimension. For example - ``` julia> AGrayZero =...
Hmm. We need to change it for ImageFeatures too in that case.
@timholy I have some doubts which I have written inline as comments on the files. I have tried to make the code fast by looking at benchmarks and ProfileView(Thanks for...
@timholy This is ready for review :)
@timholy I am changing the Keypoint type to be an alias of CartesianIndex{2} instead of the current type since it is easier for calculating descriptors (can be seen in the...
Yeah sure. It is mostly ready, you will need to update the code to the latest Julia. I did not merge it since the docs were not there.
The filter response was correct since I had manually checked it for a few octagons and images. You can check it again to confirm. What seems to be the error...
@tejus-gupta I don't think its wrong. `topright` has to be obtained by decreasing the y-coordinate and increasing the x-coordinate and for `bottomleft` you will have to increase the y and...