Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Change dependencies documentation opencv2-->opencv #12654

Merged
merged 2 commits into from
Sep 25, 2018
Merged
Changes from 1 commit
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
19 changes: 3 additions & 16 deletions docs/tutorials/scala/mxnet_scala_on_intellij.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ brew install maven

**Step 4.** Install OpenCV:
```
brew install opencv@2
brew install opencv
```


Expand Down Expand Up @@ -340,26 +340,13 @@ If you get an error, check the dependencies at the beginning of this tutorial. F

```
...
Library not loaded: /usr/local/opt/opencv@2/lib/libopencv_calib3d.2.4.dylib
Library not loaded: /usr/local/opt/opencv/lib/libopencv_calib3d.2.4.dylib
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe not 2.4 since this is Opencv3... change 2.4 into x.x maybe better

...
```

This can be resolved be installing OpenCV2.
This can be resolved be installing OpenCV.



### Troubleshooting

If you get an error, check if it is like this one regarding OpenCV. For example, you might see the following in the middle of the error messages.

```
...
Library not loaded: /usr/local/opt/opencv@2/lib/libopencv_calib3d.2.4.dylib
...
```

This can be resolved be installing OpenCV2.

### Command Line Build Option

- You can also compile the project by using the following command at the command line. Change directories to this project's folder then run the following:
Expand Down