Giter Site home page Giter Site logo

Weird boundaries and fixed output size about hed HOT 9 OPEN

s9xie avatar s9xie commented on August 20, 2024
Weird boundaries and fixed output size

from hed.

Comments (9)

gxlcliqi avatar gxlcliqi commented on August 20, 2024 5

Just find a solution:

  1. make sure the input image is 500 * 500
  2. add the following param to the crop layers in the deploy.prototxt

crop_param {
axis: 2
offset: 32
offset: 32
}

thanks to this post https://medium.com/@s1ddok/holistically-nested-edge-detection-on-ios-with-coreml-and-swift-e45df264cf66

from hed.

deepbluesea avatar deepbluesea commented on August 20, 2024

net.blobs['data'].reshape(1, 3,200,200)
net.reshape()
^reshape a net (changes the input)

also look up caffe net surgery for changing the output

from hed.

nightrome avatar nightrome commented on August 20, 2024

Thanks for your reply. The code I use is basically the tutorial. Both your suggestion and resizing the image in Python did the job of changing the size. But even if I use that, it does not remove the image boundary. In fact I have realized that the image is displaced by exactly 32 pixels to the bottom and right and then cropped, regardless of the image size.

import numpy as np
import matplotlib.pyplot as plt
import matplotlib.pylab as pylab
import matplotlib.cm as cm
import scipy.misc
import Image
import scipy.io
import os
# Make sure that caffe is on the python path:
caffe_root = '../../'  # this file is expected to be in {caffe_root}/examples/hed/
import sys
sys.path.insert(0, caffe_root + 'python')
import caffe

im_lst = []
im = Image.open('2008_000052.jpg')
im = im.resize((200, 200), Image.ANTIALIAS)
in_ = np.array(im, dtype=np.float32)
in_ = in_[:,:,::-1]
in_ -= np.array((104.00698793,116.66876762,122.67891434))
im_lst.append(in_)

idx = 0
gpu = 3

in_ = im_lst[idx]
in_ = in_.transpose((2,0,1))
#remove the following two lines if testing with cpu
caffe.set_mode_gpu()
caffe.set_device(gpu)
# load net
model_root = 'examples/hed/'
net = caffe.Net(model_root+'deploy.prototxt', model_root+'hed_pretrained_bsds.caffemodel', caffe.TEST)
# shape for input (data blob is N x C x H x W), set data
#net.blobs['data'].reshape(1, *in_.shape)
net.blobs['data'].reshape(1, 3,200,200)
net.reshape()
net.blobs['data'].data[...] = in_
# run net and take argmax for prediction
net.forward()
out1 = net.blobs['sigmoid-dsn1'].data[0][0,:,:]
out2 = net.blobs['sigmoid-dsn2'].data[0][0,:,:]
out3 = net.blobs['sigmoid-dsn3'].data[0][0,:,:]
out4 = net.blobs['sigmoid-dsn4'].data[0][0,:,:]
out5 = net.blobs['sigmoid-dsn5'].data[0][0,:,:]
fuse = net.blobs['sigmoid-fuse'].data[0][0,:,:]

import scipy.misc
scipy.misc.imsave('out1.jpg', out1)
scipy.misc.imsave('out2.jpg', out2)
scipy.misc.imsave('out3.jpg', out3)
scipy.misc.imsave('out4.jpg', out4)
scipy.misc.imsave('out5.jpg', out5)
scipy.misc.imsave('fuse.jpg', fuse)

from hed.

jrenzhile avatar jrenzhile commented on August 20, 2024

I had the same problem when running the code.

from hed.

masakinakada avatar masakinakada commented on August 20, 2024

I have the exactlly same problem.

from hed.

 avatar commented on August 20, 2024

I also have the same problem. The output edge map is not aligned to the input image.

from hed.

gxlcliqi avatar gxlcliqi commented on August 20, 2024

I also meet the same problem

from hed.

RaviTej310 avatar RaviTej310 commented on August 20, 2024

Same problem.

from hed.

kzq666666 avatar kzq666666 commented on August 20, 2024

I meet the same problem, can u provide some solutions?

from hed.

Related Issues (20)

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.