mirror of
https://github.com/opencv/opencv.git
synced 2025-01-06 02:08:12 +08:00
3dcc8c38b4
Removed obsolete python samples #25268 Clean Samples #25006 This PR removes 36 obsolete python samples from the project, as part of an effort to keep the codebase clean and focused on current best practices. Some of these samples will be updated with latest algorithms or will be combined with other existing samples. Removed Samples: > browse.py camshift.py coherence.py color_histogram.py contours.py deconvolution.py dft.py dis_opt_flow.py distrans.py edge.py feature_homography.py find_obj.py fitline.py gabor_threads.py hist.py houghcircles.py houghlines.py inpaint.py kalman.py kmeans.py laplace.py lk_homography.py lk_track.py logpolar.py mosse.py mser.py opt_flow.py plane_ar.py squares.py stitching.py text_skewness_correction.py texture_flow.py turing.py video_threaded.py video_v4l2.py watershed.py These changes aim to improve the repository's clarity and usability by removing examples that are no longer relevant or have been superseded by more up-to-date techniques.
56 lines
1.2 KiB
Python
Executable File
56 lines
1.2 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
'''
|
|
Texture flow direction estimation.
|
|
|
|
Sample shows how cv.cornerEigenValsAndVecs function can be used
|
|
to estimate image texture flow direction.
|
|
|
|
Usage:
|
|
texture_flow.py [<image>]
|
|
'''
|
|
|
|
# Python 2/3 compatibility
|
|
from __future__ import print_function
|
|
|
|
import numpy as np
|
|
import cv2 as cv
|
|
|
|
def main():
|
|
import sys
|
|
try:
|
|
fn = sys.argv[1]
|
|
except:
|
|
fn = 'starry_night.jpg'
|
|
|
|
img = cv.imread(cv.samples.findFile(fn))
|
|
if img is None:
|
|
print('Failed to load image file:', fn)
|
|
sys.exit(1)
|
|
|
|
gray = cv.cvtColor(img, cv.COLOR_BGR2GRAY)
|
|
h, w = img.shape[:2]
|
|
|
|
eigen = cv.cornerEigenValsAndVecs(gray, 15, 3)
|
|
eigen = eigen.reshape(h, w, 3, 2) # [[e1, e2], v1, v2]
|
|
flow = eigen[:,:,2]
|
|
|
|
vis = img.copy()
|
|
vis[:] = (192 + np.uint32(vis)) / 2
|
|
d = 12
|
|
points = np.dstack( np.mgrid[d/2:w:d, d/2:h:d] ).reshape(-1, 2)
|
|
for x, y in np.int32(points):
|
|
vx, vy = np.int32(flow[y, x]*d)
|
|
cv.line(vis, (x-vx, y-vy), (x+vx, y+vy), (0, 0, 0), 1, cv.LINE_AA)
|
|
cv.imshow('input', img)
|
|
cv.imshow('flow', vis)
|
|
cv.waitKey()
|
|
|
|
print('Done')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
print(__doc__)
|
|
main()
|
|
cv.destroyAllWindows()
|