Giter Club home page Giter Club logo

lp_recognition's People

Contributors

aa-samad avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

lp_recognition's Issues

zero divisoin error

from below code:

how resolve it?

`def find_corners(poly):
if len(poly) <= 4:
return poly
box = []
box.append(poly[0])

if float(poly[0][1]) - float(poly[1][1]) == 0:
    prev_slope = (float(poly[1][1]) - float(poly[0][1])) * 1000
else:
    prev_slope = (float(poly[1][1]) - float(poly[0][1])) / (float(poly[1][0]) - float(poly[0][0]))

for i in range(1, len(poly)):
    if float(poly[i - 1][1]) - float(poly[i][1]) == 0:
        slope = (float(poly[i][1]) - float(poly[i - 1][1])) * 1000
    else:
        slope = (float(poly[i][1]) - float(poly[i - 1][1])) / (float(poly[i][0]) - float(poly[i - 1][0]))
    if abs(prev_slope - slope) > 2:
        box.append(poly[i - 1])
    prev_slope = slope

box.append(poly[-1])
return np.array(box)`

SRVIO: code?

Hi! Sorry for the cross post. I am wondering if you are able to release the code for

SRVIO: Super Robust Visual Inertial Odometry for Dynamic Environments

In your other repo.

Thanks!

segmentation and ocr dosn't work

Hi,
i got error like below after process 5 images in module 2
RuntimeError: CUDA out of memory. Tried to allocate 12.50 MiB (GPU 0; 10.92 GiB total capacity; 8.57 MiB already allocated; 9.28 GiB free; 4.68 MiB cached) i know this may relay to my gpu version but on nvidia geforce gtx 1560 corei7 16 gig RAM
it just process 22 images and then error runtime show up again.
also that 5 image that have been processed doesn't have outputs for seg or char , etc ...

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.