ghostPath

Results 4 comments of ghostPath

> > ``` > > local_max = local_max.astype(np.float32) > > eroded_background = eroded_background.astype(np.float32) > > detected_peaks = local_max - eroded_background > > detected_peaks = detected_peaks.astype(np.bool) > > ``` > >...

> I have encountered the same problem as you,after changed the third line "grid_size = inp_dim // stride" to "grid_size = prediction.size(2)" in function predict_transform,the problem fixed. but the result...

> I have encountered the same problem as you,after changed the third line "grid_size = inp_dim // stride" to "grid_size = prediction.size(2)" in function predict_transform,the problem fixed. I konw why....

> > > I have encountered the same problem as you,after changed the third line "grid_size = inp_dim // stride" to "grid_size = prediction.size(2)" in function predict_transform,the problem fixed. >...