We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
where is dotc defined?: It is not the LinearAlgebra BLAS.dotc Thought using ColorVectorSpace.dotc might be a solution but to no avail.
function gradcovs(img::AbstractArray, border::AbstractString = "replicate"; weights::Function = meancovs, args...) (grad_x, grad_y) = imgradients(img, KernelFactors.sobel, border)
cov_xx = dotc(grad_x, grad_x) cov_xy = dotc.(grad_x, grad_y) cov_yy = dotc.(grad_y, grad_y) weights(cov_xx, cov_xy, cov_yy, args...)
end Any Suggestions?
The text was updated successfully, but these errors were encountered:
Yes, it's ColorVectorSpace. If you can give a reproducible example of the problem you're having, it might help.
Sorry, something went wrong.
No branches or pull requests
where is dotc defined?: It is not the LinearAlgebra BLAS.dotc
Thought using ColorVectorSpace.dotc might be a solution but to no avail.
function gradcovs(img::AbstractArray, border::AbstractString = "replicate"; weights::Function = meancovs, args...)
(grad_x, grad_y) = imgradients(img, KernelFactors.sobel, border)
end
Any Suggestions?
The text was updated successfully, but these errors were encountered: