MCPcopy Create free account

hub / github.com/WangYueFt/dgcnn / functions

Functions215 in github.com/WangYueFt/dgcnn

↓ 1 callersFunctiontranslate_pointcloud
(pointcloud)
pytorch/data.py:50
↓ 1 callersFunctionvolume_to_point_cloud
vol is occupancy grid (value = 0 or 1) of size vsize*vsize*vsize return Nx3 numpy array.
tensorflow/utils/pc_util.py:56
Method__contains__
(self, name)
tensorflow/utils/plyfile.py:339
Method__getitem__
(self, name)
tensorflow/utils/plyfile.py:342
Method__getitem__
(self, key)
tensorflow/utils/plyfile.py:701
Method__getitem__
(self, item)
pytorch/data.py:70
Method__init__
(self, message, element=None, row=None, prop=None)
tensorflow/utils/plyfile.py:131
Method__init__
This is not part of the public interface. The preferred methods of obtaining PlyElement instances are PlyData.read (to read from
tensorflow/utils/plyfile.py:379
Method__init__
(self, name, val_dtype)
tensorflow/utils/plyfile.py:724
Method__init__
(self, name, len_dtype, val_dtype)
tensorflow/utils/plyfile.py:827
Method__init__
(self, path)
pytorch/util.py:37
Method__init__
(self, num_points, partition='train')
pytorch/data.py:65
Method__init__
(self, args, output_channels=40)
pytorch/model.py:57
Method__iter__
(self)
tensorflow/utils/plyfile.py:333
Method__len__
(self)
tensorflow/utils/plyfile.py:336
Method__len__
(self)
pytorch/data.py:78
Method__repr__
(self)
tensorflow/utils/plyfile.py:148
Method__repr__
(self)
tensorflow/utils/plyfile.py:348
Method__repr__
(self)
tensorflow/utils/plyfile.py:710
Method__repr__
(self)
tensorflow/utils/plyfile.py:815
Method__repr__
(self)
tensorflow/utils/plyfile.py:912
Method__setitem__
(self, key, value)
tensorflow/utils/plyfile.py:704
Method__str__
(self)
tensorflow/utils/plyfile.py:345
Method__str__
(self)
tensorflow/utils/plyfile.py:707
Method__str__
(self)
tensorflow/utils/plyfile.py:811
Method__str__
(self)
tensorflow/utils/plyfile.py:907
Method_from_fields
(self, fields)
tensorflow/utils/plyfile.py:856
Method_get_byte_order
(self)
tensorflow/utils/plyfile.py:202
Method_get_data
(self)
tensorflow/utils/plyfile.py:403
Method_get_elements
(self)
tensorflow/utils/plyfile.py:193
Method_get_len_dtype
(self)
tensorflow/utils/plyfile.py:832
Method_get_properties
(self)
tensorflow/utils/plyfile.py:418
Method_get_val_dtype
(self)
tensorflow/utils/plyfile.py:729
Method_parse_one
(line)
tensorflow/utils/plyfile.py:747
Method_read_bin
Read data from a binary stream. Raise StopIteration if the property could not be read.
tensorflow/utils/plyfile.py:793
Method_read_bin
(self, stream, byte_order)
tensorflow/utils/plyfile.py:881
Method_set_byte_order
(self, byte_order)
tensorflow/utils/plyfile.py:205
Method_set_data
(self, data)
tensorflow/utils/plyfile.py:406
Method_set_elements
(self, elements)
tensorflow/utils/plyfile.py:196
Method_set_len_dtype
(self, len_dtype)
tensorflow/utils/plyfile.py:835
Method_set_properties
(self, properties)
tensorflow/utils/plyfile.py:421
Method_set_val_dtype
(self, val_dtype)
tensorflow/utils/plyfile.py:732
Method_to_fields
Return generator over the (numerical) PLY representation of the list data (length followed by actual data).
tensorflow/utils/plyfile.py:867
Method_write_bin
Write data to a binary stream.
tensorflow/utils/plyfile.py:804
Method_write_bin
Write data to a binary stream.
tensorflow/utils/plyfile.py:895
Functionangle_axis2euler
Convert angle, axis pair to Euler angles Parameters ---------- theta : scalar angle of rotation vector : 3 element sequence
tensorflow/utils/eulerangles.py:382
Functionavg_pool2d
2D avg pooling. Args: inputs: 4-D tensor BxHxWxC kernel_size: a list of 2 ints stride: a list of 2 ints Returns: Variable ten
tensorflow/utils/tf_util.py:382
Functionavg_pool3d
3D avg pooling. Args: inputs: 5-D tensor BxDxHxWxC kernel_size: a list of 3 ints stride: a list of 3 ints Returns: Variable t
tensorflow/utils/tf_util.py:433
Functionbatch_mkdir
(output_folder, subdir_list)
tensorflow/utils/data_prep_util.py:48
Functionbbox_label_to_obj
Visualization of bounding boxes. Args: input_filename: each line is x1 y1 z1 x2 y2 z2 label out_filename_prefix: OBJ filename prefix,
tensorflow/sem_seg/indoor3d_util.py:386
Functionbbox_label_to_obj_room
Visualization of bounding boxes. Args: input_filename: each line is x1 y1 z1 x2 y2 z2 label out_filename_prefix: OBJ filename prefix,
tensorflow/sem_seg/indoor3d_util.py:449
Functioncal_loss
Calculate cross entropy loss, apply label smoothing if needed.
pytorch/util.py:16
Functioncollect_bounding_box
Compute bounding boxes from each instance in original dataset files on one room. **We assume the bbox is aligned with XYZ coordinate.** Args
tensorflow/sem_seg/indoor3d_util.py:344
Functioncollect_point_bounding_box
Compute bounding boxes from each instance in original dataset files on one room. **We assume the bbox is aligned with XYZ coordinate.** Save
tensorflow/sem_seg/indoor3d_util.py:528
Functioncollect_point_label
Convert original dataset files to data_label file (each line is XYZRGBL). We aggregated all the points from each instance in the room. Args:
tensorflow/sem_seg/indoor3d_util.py:37
Functionconv1d
1D convolution with non-linear operation. Args: inputs: 3-D tensor variable BxLxC num_output_channels: int kernel_size: int scope:
tensorflow/utils/tf_util.py:54
Functionconv2d
2D convolution with non-linear operation. Args: inputs: 4-D tensor variable BxHxWxC num_output_channels: int kernel_size: a list of 2
tensorflow/utils/tf_util.py:115
Functionconv2d_transpose
2D convolution transpose with non-linear operation. Args: inputs: 4-D tensor variable BxHxWxC num_output_channels: int kernel_size: a
tensorflow/utils/tf_util.py:176
Functionconv3d
3D convolution with non-linear operation. Args: inputs: 5-D tensor variable BxDxHxWxC num_output_channels: int kernel_size: a list of
tensorflow/utils/tf_util.py:257
Functionconvert_label_to_one_hot
(labels)
tensorflow/part_seg/test.py:119
Methodcount
(self)
tensorflow/utils/plyfile.py:400
Functiondropout
Dropout layer. Args: inputs: tensor is_training: boolean tf.Variable scope: string keep_prob: float in [0,1] noise_shape: list
tensorflow/utils/tf_util.py:614
Methoddtype
List properties always have a numpy dtype of "object".
tensorflow/utils/plyfile.py:840
Functioneuler2angle_axis
Return angle, axis corresponding to these Euler angles Uses the z, then y, then x convention above Parameters ---------- z : scalar
tensorflow/utils/eulerangles.py:348
Functionexport_ply
(pc, filename)
tensorflow/utils/data_prep_util.py:15
Methodforward
(self, x)
pytorch/model.py:75
Methodforward
(self, x)
pytorch/model.py:123
Functionfully_connected
Fully connected layer with non-linear operation. Args: inputs: 2-D tensor BxN num_outputs: int Returns: Variable tensor of size
tensorflow/utils/tf_util.py:317
FunctiongetDataFiles
(list_filename)
tensorflow/provider.py:139
Functionget_category_names
()
tensorflow/utils/data_prep_util.py:35
Functionget_edge_feature
Construct edge feature for each point Args: point_cloud: (batch_size, num_points, 1, num_dims) nn_idx: (batch_size, num_points, k) k: in
tensorflow/utils/tf_util.py:674
Functionget_loss
(seg_pred, seg)
tensorflow/part_seg/part_seg_model.py:123
Functionget_loss
pred: B*NUM_CLASSES, label: B,
tensorflow/models/dgcnn.py:101
Functionget_model
(point_cloud, input_label, is_training, cat_num, part_num, \ batch_size, num_point, weight_decay, bn_decay
tensorflow/part_seg/part_seg_model.py:14
Functionget_obj_filenames
()
tensorflow/utils/data_prep_util.py:41
Functionget_sampling_command
(obj_filename, ply_filename)
tensorflow/utils/data_prep_util.py:23
Methodheader
Provide PLY-formatted metadata for the instance.
tensorflow/utils/plyfile.py:307
Methodheader
Format this element's metadata as it would appear in a PLY header.
tensorflow/utils/plyfile.py:684
Functionjitter_point_cloud
Randomly jitter points. jittering is per point. Input: BxNx3 array, original batch of point clouds Return: BxNx3 array, jittered
tensorflow/provider.py:99
Functionjitter_pointcloud
(pointcloud, sigma=0.01, clip=0.02)
pytorch/data.py:58
Functionknn
Get KNN based on the pairwise distance. Args: pairwise distance: (batch_size, num_points, num_points) k: int Returns: nearest neighbo
tensorflow/utils/tf_util.py:660
FunctionloadDataFile
(filename)
tensorflow/provider.py:148
Functionload_h5
(h5_filename)
tensorflow/utils/data_prep_util.py:108
Functionload_h5_data_label_normal
(h5_filename)
tensorflow/utils/data_prep_util.py:92
Functionload_h5_data_label_seg
(h5_filename)
tensorflow/provider.py:152
Functionload_h5_data_label_seg
(h5_filename)
tensorflow/utils/data_prep_util.py:100
Functionload_ply_data
(filename, point_num)
tensorflow/utils/data_prep_util.py:119
Functionload_ply_normal
(filename, point_num)
tensorflow/utils/data_prep_util.py:126
Functionmake2d
Make a 2D array from an array of arrays. The `cols' and `dtype' arguments can be omitted if the array is not empty.
tensorflow/utils/plyfile.py:101
Functionmax_pool2d
2D max pooling. Args: inputs: 4-D tensor BxHxWxC kernel_size: a list of 2 ints stride: a list of 2 ints Returns: Variable ten
tensorflow/utils/tf_util.py:357
Functionmax_pool3d
3D max pooling. Args: inputs: 5-D tensor BxDxHxWxC kernel_size: a list of 3 ints stride: a list of 3 ints Returns: Variable t
tensorflow/utils/tf_util.py:408
Functionmean_var_with_update
()
tensorflow/utils/tf_util.py:490
Methodname
(self)
tensorflow/utils/plyfile.py:438
Methodname
(self)
tensorflow/utils/plyfile.py:738
Functionpad_arr_rows
(arr, row, pad='edge')
tensorflow/utils/data_prep_util.py:134
Functionpairwise_distance
Compute pairwise distance of a point cloud. Args: point_cloud: tensor (batch_size, num_points, num_dims) Returns: pairwise distance: (ba
tensorflow/utils/tf_util.py:638
Methodply_property
(self, name)
tensorflow/utils/plyfile.py:434
Functionpoint_cloud_to_volume_batch
Input is BxNx3 batch of point cloud Output is Bx(vsize^3)
tensorflow/utils/pc_util.py:24
Functionpoint_label_to_obj
For visualization of a room from data_label file, input_filename: each line is X Y Z R G B L out_filename: OBJ filename, visualize input fi
tensorflow/sem_seg/indoor3d_util.py:80
Functionpyplot_draw_volume
vol is of size vsize*vsize*vsize output an image to output_filename
tensorflow/utils/pc_util.py:193
← previousnext →101–200 of 215, ranked by callers