update,
This commit is contained in:
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/beach.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/beach.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/building.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/building.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/bus.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/bus.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
164
vinniesniper-54816/task1/from_client/2022-Codes-Python/demo.py
Normal file
164
vinniesniper-54816/task1/from_client/2022-Codes-Python/demo.py
Normal file
@@ -0,0 +1,164 @@
|
||||
import cv2 as cv
|
||||
import numpy as np
|
||||
from glob import glob
|
||||
|
||||
# the directory of the image database
|
||||
database_dir = "image.orig"
|
||||
|
||||
# Compute pixel-by-pixel difference and return the sum
|
||||
def compareImgs(img1, img2):
|
||||
# resize img2 to img1
|
||||
img2 = cv.resize(img2, (img1.shape[1], img1.shape[0]))
|
||||
diff = cv.absdiff(img1, img2)
|
||||
return diff.sum()
|
||||
|
||||
def compareImgs_hist(img1, img2):
|
||||
width, height = img1.shape[1], img1.shape[0]
|
||||
img2 = cv.resize(img2, (width, height))
|
||||
num_bins = 10
|
||||
hist1 = [0] * num_bins
|
||||
hist2 = [0] * num_bins
|
||||
bin_width = 255.0 / num_bins + 1e-4
|
||||
# compute histogram from scratch
|
||||
|
||||
# for w in range(width):
|
||||
# for h in range(height):
|
||||
# hist1[int(img1[h, w] / bin_width)] += 1
|
||||
# hist2[int(img2[h, w] / bin_width)] += 1
|
||||
|
||||
# compute histogram by using opencv function
|
||||
# https://docs.opencv.org/4.x/d6/dc7/group__imgproc__hist.html#ga4b2b5fd75503ff9e6844cc4dcdaed35d
|
||||
|
||||
hist1 = cv.calcHist([img1], [0], None, [num_bins], [0, 255])
|
||||
hist2 = cv.calcHist([img2], [0], None, [num_bins], [0, 255])
|
||||
sum = 0
|
||||
for i in range(num_bins):
|
||||
sum += abs(hist1[i] - hist2[i])
|
||||
return sum / float(width * height)
|
||||
|
||||
def retrieval():
|
||||
print("1: beach")
|
||||
print("2: building")
|
||||
print("3: bus")
|
||||
print("4: dinosaur")
|
||||
print("5: flower")
|
||||
print("6: horse")
|
||||
print("7: man")
|
||||
choice = input("Type in the number to choose a category and type enter to confirm\n")
|
||||
if choice == '1':
|
||||
src_input = cv.imread("beach.jpg")
|
||||
print("You choose: %s - beach\n" % choice)
|
||||
if choice == '2':
|
||||
src_input = cv.imread("building.jpg")
|
||||
print("You choose: %s - building\n" % choice)
|
||||
if choice == '3':
|
||||
src_input = cv.imread("bus.jpg")
|
||||
print("You choose: %s - bus\n" % choice)
|
||||
if choice == '4':
|
||||
src_input = cv.imread("dinosaur.jpg")
|
||||
print("You choose: %s - dinosaur\n" % choice)
|
||||
if choice == '5':
|
||||
src_input = cv.imread("flower.jpg")
|
||||
print("You choose: %s - flower\n" % choice)
|
||||
if choice == '6':
|
||||
src_input = cv.imread("horse.jpg")
|
||||
print("You choose: %s - horse\n" % choice)
|
||||
if choice == '7':
|
||||
src_input = cv.imread("man.jpg")
|
||||
print("You choose: %s - man\n" % choice)
|
||||
|
||||
min_diff = 1e50
|
||||
|
||||
# src_input = cv.imread("man.jpg")
|
||||
|
||||
cv.imshow("Input", src_input)
|
||||
|
||||
# change the image to gray scale
|
||||
src_gray = cv.cvtColor(src_input, cv.COLOR_BGR2GRAY)
|
||||
|
||||
# read image database
|
||||
database = sorted(glob(database_dir + "/*.jpg"))
|
||||
|
||||
|
||||
for img in database:
|
||||
# read image
|
||||
img_rgb = cv.imread(img)
|
||||
# convert to gray scale
|
||||
img_gray = cv.cvtColor(img_rgb, cv.COLOR_BGR2GRAY)
|
||||
# compare the two images
|
||||
diff = compareImgs(src_gray, img_gray)
|
||||
# compare the two images by histogram, uncomment the following line to use histogram
|
||||
# diff = compareImgs_hist(src_gray, img_gray)
|
||||
print(img, diff)
|
||||
# find the minimum difference
|
||||
if diff <= min_diff:
|
||||
# update the minimum difference
|
||||
min_diff = diff
|
||||
# update the most similar image
|
||||
closest_img = img_rgb
|
||||
result = img
|
||||
|
||||
print("the most similar image is %s, the pixel-by-pixel difference is %f " % (result, min_diff))
|
||||
print("\n")
|
||||
|
||||
cv.imshow("Result", closest_img)
|
||||
cv.waitKey(0)
|
||||
cv.destroyAllWindows()
|
||||
|
||||
def SIFT():
|
||||
img1 = cv.imread("flower.jpg")
|
||||
img2 = cv.imread("image.orig/685.jpg")
|
||||
if img1 is None or img2 is None:
|
||||
print('Error loading images!')
|
||||
exit(0)
|
||||
#-- Step 1: Detect the keypoints using SIFT Detector, compute the descriptors
|
||||
minHessian = 400
|
||||
detector = cv.SIFT_create()
|
||||
keypoints1, descriptors1 = detector.detectAndCompute(img1, None)
|
||||
keypoints2, descriptors2 = detector.detectAndCompute(img2, None)
|
||||
#-- Step 2: Matching descriptor vectors with a brute force matcher
|
||||
matcher = cv.DescriptorMatcher_create(cv.DescriptorMatcher_BRUTEFORCE)
|
||||
matches = matcher.match(descriptors1, descriptors2)
|
||||
#-- Draw matches
|
||||
img_matches = np.empty((max(img1.shape[0], img2.shape[0]), img1.shape[1]+img2.shape[1], 3), dtype=np.uint8)
|
||||
cv.drawMatches(img1, keypoints1, img2, keypoints2, matches, img_matches)
|
||||
#-- Show detected matches
|
||||
cv.imshow('Matches: SIFT (Python)', img_matches)
|
||||
cv.waitKey()
|
||||
|
||||
# draw good matches
|
||||
matches = sorted(matches, key = lambda x:x.distance)
|
||||
min_dist = matches[0].distance
|
||||
good_matches = tuple(filter(lambda x:x.distance <= 2 * min_dist, matches))
|
||||
|
||||
img_matches = np.empty((max(img1.shape[0], img2.shape[0]), img1.shape[1]+img2.shape[1], 3), dtype=np.uint8)
|
||||
cv.drawMatches(img1, keypoints1, img2, keypoints2, good_matches, img_matches, flags=cv.DrawMatchesFlags_NOT_DRAW_SINGLE_POINTS)
|
||||
|
||||
#-- Show detected matches
|
||||
cv.imshow('Good Matches: SIFT (Python)', img_matches)
|
||||
cv.waitKey()
|
||||
|
||||
|
||||
def main():
|
||||
# img = cv.imread("beach.jpg")
|
||||
# cv.imshow("Image", img)
|
||||
# from matplotlib import pyplot as plt
|
||||
# plt.hist(img.ravel(),10,[0,256]); plt.show()
|
||||
# gray_img = cv.cvtColor(img, cv.COLOR_BGR2GRAY)
|
||||
# cv.imshow("Gray Image", gray_img)
|
||||
# cv.waitKey()
|
||||
|
||||
|
||||
print("1: Image retrieval demo")
|
||||
print("2: SIFT demo")
|
||||
number = int(input("Type in the number to choose a demo and type enter to confirm\n"))
|
||||
if number == 1:
|
||||
retrieval()
|
||||
elif number == 2:
|
||||
SIFT()
|
||||
# pass
|
||||
else:
|
||||
print("Invalid input")
|
||||
exit()
|
||||
|
||||
main()
|
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/dinosaur.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/dinosaur.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/flower.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/flower.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/horse.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/horse.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/0.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/0.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/1.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/1.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/10.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/10.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/100.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/100.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/101.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/101.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/102.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/102.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/103.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/103.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/104.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/104.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/105.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/105.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/106.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/106.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/107.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/107.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/108.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/108.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/109.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/109.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/11.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/11.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/110.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/110.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/111.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/111.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/112.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/112.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/113.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/113.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/114.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/114.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/115.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/115.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/116.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/116.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/117.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/117.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/118.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/118.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/119.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/119.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/12.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/12.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/120.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/120.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/121.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/121.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/122.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/122.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/123.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/123.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/124.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/124.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/125.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/125.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/126.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/126.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/127.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/127.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/128.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/128.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/129.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/129.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/13.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/13.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/130.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/130.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/131.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/131.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/132.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/132.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/133.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/133.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/134.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/134.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/135.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/135.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/136.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/136.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/137.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/137.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/138.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/138.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/139.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/139.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/14.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/14.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/140.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/140.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/141.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/141.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/142.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/142.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/143.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/143.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/144.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/144.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/145.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/145.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/146.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/146.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/147.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/147.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/148.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/148.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/149.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/149.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/15.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/15.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/150.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/150.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/151.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/151.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/152.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/152.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/153.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/153.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/154.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/154.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/155.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/155.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/156.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/156.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/157.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/157.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/158.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/158.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/159.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/159.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/16.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/16.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/160.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/160.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/161.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/161.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/162.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/162.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/163.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/163.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/164.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/164.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/165.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/165.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/166.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/166.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/167.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/167.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/168.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/168.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/169.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/169.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/17.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/17.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/170.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/170.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/171.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/171.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/172.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/172.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/173.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/173.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/174.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/174.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/175.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/175.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/176.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/176.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/177.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/177.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/178.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/178.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/179.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/179.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/18.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/18.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/180.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/180.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/181.jpg
(Stored with Git LFS)
Normal file
BIN
vinniesniper-54816/task1/from_client/2022-Codes-Python/image.orig/181.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user