Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ViralBShah authored Oct 25, 2024
1 parent cfdadf0 commit ccc99cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Once imported, you can call OpenCV functions and use its data structures. Here's

List of wrapped methods is available here: [wrapped methods](https://github.com/opencv/opencv_contrib/blob/4.x/modules/julia/gen/funclist.csv)
```julia
using ImageCore, OpenCV, TestImages, MosaicViews
using ImageCore, OpenCV, TestImages, MosaicViews, ImageView

img_orig = testimage("Mandrill")

Expand All @@ -48,7 +48,7 @@ img_blur = OpenCV.blur(img_gray, OpenCV.Size(Int32(9), Int32(9)))

img_back = colorview(Gray, float.(img_blur)./255)[1,:,:]

mosaic(img_orig, img_back; nrow=1)
imshow(mosaic(img_orig, img_back; nrow=1))
```

#### Output:
Expand Down

0 comments on commit ccc99cc

Please sign in to comment.