Remember
Register
Welcome new user! You can search existing questions and answers without registering, but please register to post new questions and receive answers. Note that due to large amounts of spam attempts, your first three posts will be manually moderated, so please be patient.
JeVois Tech Zone
We have moved to a new forum at
http://jevois.usc.edu
, please check it out. The forum at jevois.org/qa will not allow new user registrations but is maintained alive for its useful past questions and answers.
Questions
Unanswered
Tags
Users
Ask a Question
Welcome to JeVois Tech Zone, where you can ask questions and receive answers from other members of the community.
All categories
User questions
(151)
Hardware Questions
(82)
Programmer Questions
(254)
Misc Questions
(38)
525
questions
591
answers
651
comments
700,813
users
Related questions
Can scipy be included in Jevois image?
JeVois Inventor Python ,change module' s parameters in GUI
Python and OpenCV step-by-step example to upload to JeVois
How i can get the matrix and distortion from the calibration file on python new module
Make an "apt-get install" on Jevois
Most popular tags
jevois
serial
python
arduino
ubuntu
jevois-inventor
module
aruco
host
jevois-sdk-dev
programming
tensorflow
bug
raspberry-pi
communication
windows
opencv
inventor
report
camera
ar0135
c
yolo
output
build
green-light
jevois-daemon
write-your-own-module
marker-detections
mavlink
sdcard
lens
objectdetect
dnn
usb
windows-10
darknet
qrcode
recognition
detection
hardware
install
platform
software
global-shutter
noir
tflite
custom-model
jevois-inventor-windows
hello-jevois
binary
demos
sensor-model
focal-length
resolution
freezing
fan
sensor
power
objecttracker
sdk
connector
video
linux
frame
green-light-on
hibernate
ov2640
people-detection
script-from-host
jevois-inventor-ubuntu18
ubuntu18
mobilenet
low-frame-rate
svm
nodemcu
frc
darknetsaliency
apt-get
laser
imu
artoolkit
timer
gucviewer
face
not-recognized
road-navigation
navigation
counting
eye-tracking
road
cli-command
wifi
slow
debug
color
gpu
pointer
gdb
parameters
Can other python libraries be installed on the Jevois?
0
votes
Hi
I'm currently using the OpenCV Python modules and would like to know if it's possible to install other python packages such as scikit learn or matlabplot. Would I be able to use pip or another package manager to do this?
python
asked
Aug 19, 2018
in
Programmer Questions
by
garwerd
(
120
points)
Please
log in
or
register
to answer this question.
1 Answer
0
votes
Great question. The current model is that you would need to add those to buildroot, which will then cross-compile and install. It is quite easy for us to do that. Let me look into these two to get a feel for what would be required.
answered
Aug 20, 2018
by
JeVois
(
46,580
points)
Hi, I was wondering if this had been achieved? I'd also find it really useful to have Sklearn. Is there a tutorial that you could point me to for installing packages manually?
Cheers.
Hello, I would also like to install other python libraries such as maskrcnn. Has this been implemented?
well, yes and no. Please see
http://jevois.org/doc/Change113log.html
the section where we describe the added support for pip.
So pip works if you first download a package and copy it to microSD.
Now the problem is that most python modules that do something interesting ... are not written in python! I am guessing this is the case of markrcnn. So to install that one, you would need a cross-compiled version of the package. You may want to check piwheels.org for cross-compiled wheels (JeVois uses python 3.7, so you need cp37m wheels).
Now if all you want is run maskrcnn then I think you would be better off trying to get that running through opencv as opposed to some other package. JeVois supports full opencv 4.1.1. So you need to find a way to run maskrcnn in opencv and that will work on JeVois. Just beware, it might be very slow and/or run out of memory. I have not seen tiny versions of maskrcnn for embedded platforms yet.
Please
log in
or
register
to add a comment.
...