Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion samples/crop.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"path"
"runtime"

opencv "github.com/lazywei/go-opencv/opencv"
opencv "github.com/zhenligod/go-opencv/opencv"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion samples/edge.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"path"
"runtime"

"github.com/lazywei/go-opencv/opencv"
"github.com/zhenligod/go-opencv/opencv"
//"../opencv" // can be used in forks, comment in real application
)

Expand Down
2 changes: 1 addition & 1 deletion samples/face_detect.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/lazywei/go-opencv/opencv"
"github.com/zhenligod/go-opencv/opencv"
"path"
"runtime"
)
Expand Down
2 changes: 1 addition & 1 deletion samples/hellocv.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"path"
"runtime"

"github.com/lazywei/go-opencv/opencv"
"github.com/zhenligod/go-opencv/opencv"
//"../opencv" // can be used in forks, comment in real application
)

Expand Down
2 changes: 1 addition & 1 deletion samples/inpaint.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"path"
"runtime"

"github.com/lazywei/go-opencv/opencv"
"github.com/zhenligod/go-opencv/opencv"
//"../opencv" // can be used in forks, comment in real application
)

Expand Down
2 changes: 1 addition & 1 deletion samples/morphology.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ package main

import (
"fmt"
"github.com/lazywei/go-opencv/opencv"
"github.com/zhenligod/go-opencv/opencv"
"os"
)

Expand Down
2 changes: 1 addition & 1 deletion samples/motion_detection.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

"github.com/lazywei/go-opencv/opencv"
"github.com/zhenligod/go-opencv/opencv"
//"../opencv" // can be used in forks, comment in real application
)

Expand Down
2 changes: 1 addition & 1 deletion samples/player.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"fmt"
"os"

"github.com/lazywei/go-opencv/opencv"
"github.com/zhenligod/go-opencv/opencv"
//"../opencv" // can be used in forks, comment in real application
)

Expand Down
2 changes: 1 addition & 1 deletion samples/thresholds.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ package main

import (
"fmt"
"github.com/lazywei/go-opencv/opencv"
"github.com/zhenligod/go-opencv/opencv"
"os"
)

Expand Down
2 changes: 1 addition & 1 deletion samples/webcam.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
//"path"
//"runtime"

"github.com/lazywei/go-opencv/opencv"
"github.com/zhenligod/go-opencv/opencv"
//"../opencv" // can be used in forks, comment in real application
)

Expand Down
2 changes: 1 addition & 1 deletion samples/webcam_facedetect.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"path"

"../opencv"
"github.com/zhenligod/go-opencv/opencv"
)

func main() {
Expand Down