Skip to content

Commit 479421f

Browse files
committed
cleaned up code and added doc
1 parent f1d2083 commit 479421f

File tree

8 files changed

+112
-275
lines changed

8 files changed

+112
-275
lines changed

README.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# TriloBits
2-
32
<p>Team Name: Team P
43
<p>Challenge: Trilobite Bits
5-
<p>Subchallenge: 1) find the # of segments
4+
5+
## Progress
6+
<p> Focused only on the identification of Segments and differentiation between head, body, and tail
7+
<p> Further modules will have to be developed to detect triolobyte in an image if not centered and either
8+
1. rectify image to center
9+
2. provide coordinates of start and end
10+
<p> Using Derivative filtering as the main player in detecting segments we look for drastic changes in intensity along the center of the image and draw lines on those peaks yeilding optimistic results. Details on how we might improve the accuracy and remove false positives aswell as how we can actually use this information in solving the problem are documented in the file segment.py
11+
<p> Included is also a scraper that will collect the entire catalog of images from the museam website
12+
## Within
13+
*. scraper.py use: "python scraper.py"
14+
*. segment.py use: "python segment.py [filename]" output:[output.jpg]
15+
16+

binary.py

-74
This file was deleted.

bit5.jpg

1.83 MB
Loading

line.py

-101
This file was deleted.

new.jpg

148 KB
Loading

output.jpg

148 KB
Loading

segment.py

+99
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
from sys import argv
2+
import cv2
3+
import numpy as np
4+
from matplotlib import pyplot as plt
5+
import operator
6+
7+
8+
# This file will take a "sufficiently" centered image of
9+
# a well preserved trilobite and find areas of sharp change
10+
# to find boundry points between parts of the trilobites body
11+
12+
# use "python segment.py [filename]"
13+
14+
# results on this are not 100% accurate but show that this
15+
# might be the right path to a solution and should be expanded upon
16+
17+
# TODO:
18+
# Come up with a metric to dynamically pick the window size to get
19+
# the best results
20+
# Possiblity of passing over data a second time after peaks have
21+
# Been found to eliminate false positives recognize patters to
22+
# determine segments and differentation btwn head thorax and tail
23+
24+
25+
26+
27+
28+
29+
# Helper function to use matplot lib with scanlines
30+
def plot_graph(line, height, subcol, subrow, plotindex, color):
31+
i = 0
32+
prevx = 0
33+
prevy = 0
34+
plt.subplot(subcol,subrow,plotindex)
35+
for x in np.nditer(line):
36+
plt.plot([i,prevy], [x,prevx], color)
37+
plt.axis([0, height, 0, 255])
38+
prevx = x
39+
prevy = i
40+
i+=1
41+
42+
# Draw original image with detected segments based on
43+
# Scan Line derivative and window size
44+
# Input #
45+
# orignal image
46+
# derivative of scanline
47+
# window size
48+
def find_local_max(img, line, window_size):
49+
height, width = img.shape
50+
start = 0
51+
end = window_size
52+
53+
# get a local maxima within in a window
54+
# simple approach to find peaks in derivative
55+
for i in range(0,height,window_size):
56+
index, value = max(enumerate(line[start:end]), key=operator.itemgetter(1))
57+
img = cv2.line(img,(0,index+start),(width,index+start),(255,255,255))
58+
start += window_size
59+
end += window_size
60+
return img
61+
62+
63+
def main():
64+
image_name = argv[1]
65+
66+
# scale down image size
67+
img = cv2.pyrDown(cv2.pyrDown(cv2.imread(argv[1],0)))
68+
height, width = img.shape
69+
70+
# get the center of the image
71+
middle = width/2
72+
middle = int(middle)
73+
74+
# get a 1D scanline of the center of the image
75+
proc = img[0:height-1, middle:middle+1]
76+
77+
blur = cv2.GaussianBlur(proc,(5,5),0)
78+
79+
# compute first derivative of the scanline
80+
sobelx64f = cv2.Sobel(blur,cv2.CV_64F,0,1,ksize=1)
81+
# normalize values for representation
82+
abs_sobel64f = np.absolute(sobelx64f)
83+
sobel_8u = np.uint8(abs_sobel64f)
84+
# t = np.transpose(blur)
85+
86+
#draw detected segements on image
87+
img = find_local_max(img, sobel_8u, 20)
88+
89+
90+
91+
plot_graph(blur, height, 3, 1, 2 ,'k-')
92+
plot_graph(sobel_8u, height, 3, 1,2,'r-')
93+
94+
cv2.imwrite('output.jpg',img)
95+
96+
plt.show()
97+
98+
if __name__ == '__main__':
99+
main()

test.py

-98
This file was deleted.

0 commit comments

Comments
 (0)