Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add FCN8sDepthPredictionConcatFirst model to fcn_depth_prediction.py #2481

Merged

Conversation

YutoUchimi
Copy link
Contributor

@YutoUchimi YutoUchimi commented Dec 14, 2019

Add a neural network implement of my paper in JSAI2019 to fcn_depth_prediction.py

  • Add sample dataset of mirror
  • Add FCN8sDepthPredictionConcatFirst network model
  • Add training script
  • Add doc for the training script

@YutoUchimi YutoUchimi added this to the 1.2.11 milestone Dec 14, 2019
@YutoUchimi YutoUchimi changed the title Add FCN8sDepthPredictionConcatAtOnce model to fcn_depth_prediction.py [WIP] Add FCN8sDepthPredictionConcatAtOnce model to fcn_depth_prediction.py Dec 14, 2019
@YutoUchimi YutoUchimi force-pushed the fcn_depth_prediction_concat_at_once branch from 37d7be4 to 994bb73 Compare December 16, 2019 02:29
@YutoUchimi YutoUchimi changed the title [WIP] Add FCN8sDepthPredictionConcatAtOnce model to fcn_depth_prediction.py Add FCN8sDepthPredictionConcatFirst model to fcn_depth_prediction.py Dec 16, 2019
@k-okada
Copy link
Member

k-okada commented May 13, 2020

failing due to missing imgaug

00:20:47.160 imageio requires Python '>=3.5' but the running Python is 2.7.17

00:21:39.111 ERROR: the following rosdeps failed to install
00:21:39.111   pip: command [sudo -H pip2 install -U imgaug] failed
00:21:39.111   pip: Failed to detect successful installation of [imgaug]

00:34:37.602 
                                                                                
  File "/workspace/ros/ws_jsk_recognition/src/jsk_recognition/jsk_recognition_utils/python/jsk_recognition_utils/datasets/depth_prediction.py", line 8, in <module>
00:34:37.602 
                                                                                
    import imgaug.augmenters as iaa
00:34:37.602 
                                                                                
ImportError: No module named imgaug.augmenters
00:34:37.602 

because of imageio. need to use system imageio , but we still need to use pip for xenial

python-imageio:
  debian:
    '*': [python-imageio]
    jessie:
      pip:
        packages: [imageio]
    stretch:
      pip:
        packages: [imageio]
    wheezy:
      pip:
        packages: [imageio]
  fedora:
    pip:
      packages: [imageio]
  gentoo: [dev-python/imageio]
  ubuntu:
    '*': [python-imageio]
    trusty:
      pip:
        packages: [imageio]
    xenial:
      pip:
        packages: [imageio]

@knorth55
Copy link
Member

because of imageio. need to use system imageio , but we still need to use pip for xenial

@k-okada @YutoUchimi how can i fix this issue?

@YutoUchimi
Copy link
Contributor Author

I rewrote data augmentation part so as not to depend on imgaug any more.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants