Metadata-Version: 2.1
Name: graph-cordinates
Version: 0.0.1
Summary: From Image of a curve/graph, extract and store the cordinates pairs in a 2D array, Github link (https://github.com/kumarUjjawal3621/mypython_lib)
Author: Ujjawal Kumar (India)
Author-email: <kumarujjawal3621@gmail.com>
Keywords: stock price,Python,Cordinates,Image,2D Curve
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown

 
Library-
1. graph_cordinates.graph_cordinates.get_graphcordinates(image_path,x_range,y_range,background_value)

How to pass arguments-
1. image_path ==path to a graph image
2. x_range ==[Value of left most point on graph's x-axis, Value of right most point on graph's x-axis]
3.y_range ==[Value of bottom most point on graph's y-axis, Value of top most point on graph's y-axis]
4.background_value ==0 or 1 , 0: When the graph's background color is relatively darker than the curve, 1: Otherwise

Caution- 
Try to pass the Image by erasing the axes

Return value- Will return a numpy array of structure- array = [[x1,y1], [x2,y2], .......n-points] ; n=pixel width of Image
