Henric Andrew

Results 26 issues of Henric Andrew

I am following this tutorial: https://github.com/open-mmlab/mmsegmentation/blob/master/demo/MMSegmentation_Tutorial.ipynb I am using grayscale images of size (3006,4104). What should the following values in the config be changed to: 1) cfg.img_norm_cfg = dict( mean=[123.675,...

This does not work. Get the following error when trying to run FileNotFoundError: [Errno 2] No such file or directory: sfm/Structure-From-Motion-SFM-/data/calibration/camera_observatory.txt'

I have been running makescene several time and it has worked fine. However, I needed to move the all images to another location and run from there. When I try...

I need to use known camera intrinsics when running Structure From Motion with the command mve.sfmrecon. I therefore add known intrinsics to the meta.ini-files and then run mve.sfmrecon with the...

I follow this tutorial: https://github.com/open-mmlab/mmsegmentation/blob/main/demo/MMSegmentation_Tutorial.ipynb It works fine up to the cell: ``` # Check Pytorch installation import torch, torchvision print(torch.__version__, torch.cuda.is_available()) # Check MMSegmentation installation import mmseg print(mmseg.__version__) ```...

I have searched related issues but cannot get the expected help. I follow this tutorial: https://github.com/open-mmlab/mmsegmentation/blob/main/demo/MMSegmentation_Tutorial.ipynb I use my own images but in the same format as the images in...

I have those classes and palette: classes = ('background', 'car', 'grass', 'person') palette = [[0, 0, 100], [255,0,0], [0,255, 0], [255,255,0]] # Blue, red, green, yellow I then run this...

I have searched related issues but cannot get the expected help. I follow this tutorial: https://github.com/open-mmlab/mmsegmentation/blob/main/demo/MMSegmentation_Tutorial.ipynb When I run this cell: ``` from mmengine.runner import Runner runner = Runner.from_cfg(cfg) ```...

In this notebook you use 256x256 images: https://github.com/NielsRogge/Transformers-Tutorials/blob/master/SAM/Fine_tune_SAM_(segment_anything)_on_a_custom_dataset.ipynb What if you have much bigger images that loses to much detail by downscaling. And if those images contain mainly one or...

In file with several functions, each function is further indented than the above function. Thus, there will be a lot of space to the left before functions further down in...