MCPcopy Create free account

hub / github.com/charlesq34/pointnet / functions

Functions197 in github.com/charlesq34/pointnet

↓ 76 callersMethodwrite
Write PLY data to a writeable file-like object or filename.
utils/plyfile.py:291
↓ 18 callersFunctionprintout
(flog, data)
part_seg/train.py:82
↓ 9 callersMethoddtype
Return the numpy dtype of the in-memory representation of the data. (If there are no list properties, and the PLY format is
utils/plyfile.py:446
↓ 9 callersFunctionlog_string
(out_str)
train.py:67
↓ 9 callersFunctionlog_string
(out_str)
sem_seg/train.py:97
↓ 8 callersFunction_lookup_type
(type_str)
utils/plyfile.py:80
↓ 8 callersFunctionprintout
(flog, data)
part_seg/test.py:57
↓ 6 callersFunction_variable_on_cpu
Helper to create a Variable stored on CPU memory. Args: name: name of the variable shape: list of ints initializer: initializer for Vari
utils/tf_util.py:10
↓ 6 callersFunctionlog_string
(out_str)
evaluate.py:51
↓ 5 callersFunction_variable_with_weight_decay
Helper to create an initialized Variable with weight decay. Note that the Variable is initialized with a truncated normal distribution. A weight
utils/tf_util.py:24
↓ 4 callersFunctionbatch_norm_template
Batch normalization on convolutional maps and beyond... Ref.: http://stackoverflow.com/questions/33949786/how-could-i-use-batch-normalization-in-te
utils/tf_util.py:455
↓ 4 callersMethoddtype
Return the numpy dtype description for this property (as a tuple of strings).
utils/plyfile.py:770
↓ 4 callersMethodlist_dtype
Return the pair (len_dtype, val_dtype) (both numpy-friendly strings).
utils/plyfile.py:847
↓ 4 callersFunctionlog_string
(out_str)
sem_seg/batch_inference.py:34
↓ 3 callersMethod_check_sanity
(self)
utils/plyfile.py:413
↓ 3 callersFunctiondraw_point_cloud
Render point cloud to image with alpha channel. Input: points: Nx3 numpy array (+y is up direction) Output: g
utils/pc_util.py:97
↓ 3 callersFunctionget_model
ConvNet baseline, input is BxNx3 gray image
sem_seg/model.py:19
↓ 3 callersMethodread
Read PLY data from a readable file-like object or filename.
utils/plyfile.py:275
↓ 2 callersMethod__init__
elements: sequence of PlyElement instances. text: whether the resulting PLY file will be text (True) or binary (False).
utils/plyfile.py:165
↓ 2 callersMethod_index
(self)
utils/plyfile.py:428
↓ 2 callersFunction_open_stream
(stream, read_or_write)
utils/plyfile.py:355
↓ 2 callersFunctionbatch_norm_for_conv2d
Batch normalization on 2D convolutional maps. Args: inputs: Tensor, 4D BHWC input maps is_training: boolean tf.Varialbe, true i
utils/tf_util.py:525
↓ 2 callersFunctionconvert_label_to_one_hot
(labels)
part_seg/train.py:93
↓ 2 callersMethoddescribe
Construct a PlyElement from an array's metadata. len_types and val_types can be given as mappings from list property names t
utils/plyfile.py:507
↓ 2 callersFunctionfeature_transform_net
Feature Transform Net, input is BxNx1xK Return: Transformation matrix of size KxK
models/transform_nets.py:55
↓ 2 callersFunctionget_deconv_dim
(dim_size, stride_size, kernel_size, padding)
utils/tf_util.py:220
↓ 2 callersFunctionget_loss
pred: B,N,13 label: B,N
sem_seg/model.py:60
↓ 2 callersFunctioninput_transform_net
Input (XYZ) Transform Net, input is BxNx3 gray image Return: Transformation matrix of size 3xK
models/transform_nets.py:10
↓ 2 callersFunctionmat2euler
Discover Euler angle vector from 3x3 matrix Uses the conventions above. Parameters ---------- M : array-like, shape (3,3) cy_th
utils/eulerangles.py:198
↓ 2 callersFunctionoutput_color_point_cloud
(data, seg, out_file)
part_seg/test.py:61
↓ 2 callersFunctionplaceholder_inputs
(batch_size, num_point)
sem_seg/model.py:12
↓ 2 callersFunctionroom2blocks
Prepare block training data. Args: data: N x 6 numpy array, 012 are XYZ in meters, 345 are RGB in [0,1] assumes the data is s
sem_seg/indoor3d_util.py:132
↓ 1 callersMethod_check_name
(self)
utils/plyfile.py:441
↓ 1 callersMethod_check_name
(self)
utils/plyfile.py:741
↓ 1 callersMethod_from_fields
Parse from generator. Raise StopIteration if the property could not be read.
utils/plyfile.py:778
↓ 1 callersMethod_index
(self)
utils/plyfile.py:213
↓ 1 callersMethod_parse_header
Parse a PLY header from a readable file-like stream.
utils/plyfile.py:220
↓ 1 callersMethod_parse_multi
Parse a list of PLY element definitions.
utils/plyfile.py:458
↓ 1 callersMethod_parse_one
Consume one element definition. The unconsumed input is returned along with a PlyElement instance.
utils/plyfile.py:471
↓ 1 callersMethod_read
Read the actual data from a PLY file.
utils/plyfile.py:567
↓ 1 callersMethod_read_bin
Load a PLY element from a binary PLY file. The element may contain list properties.
utils/plyfile.py:656
↓ 1 callersMethod_read_txt
Load a PLY element from an ASCII-format PLY file. The element may contain list properties.
utils/plyfile.py:611
↓ 1 callersFunction_split_line
(line, n)
utils/plyfile.py:91
↓ 1 callersMethod_to_fields
Return generator over one item.
utils/plyfile.py:786
↓ 1 callersMethod_write
Write the data to a PLY file.
utils/plyfile.py:593
↓ 1 callersMethod_write_bin
Save a PLY element to a binary PLY file. The element may contain list properties.
utils/plyfile.py:673
↓ 1 callersMethod_write_txt
Save a PLY element to an ASCII-format PLY file. The element may contain list properties.
utils/plyfile.py:643
↓ 1 callersFunctionbatch_norm_for_conv1d
Batch normalization on 1D convolutional maps. Args: inputs: Tensor, 3D BLC input maps is_training: boolean tf.Varialbe, true in
utils/tf_util.py:509
↓ 1 callersFunctionbatch_norm_for_conv3d
Batch normalization on 3D convolutional maps. Args: inputs: Tensor, 5D BDHWC input maps is_training: boolean tf.Varialbe, true
utils/tf_util.py:540
↓ 1 callersFunctionbatch_norm_for_fc
Batch normalization on FC data. Args: inputs: Tensor, 2D BxC input is_training: boolean tf.Varialbe, true indicates training ph
utils/tf_util.py:495
↓ 1 callersFunctioneuler2mat
Return matrix for rotations around z, y and x axes Uses the z, then y, then x convention above Parameters ---------- z : scalar
utils/eulerangles.py:98
↓ 1 callersFunctioneuler2quat
Return quaternion corresponding to these Euler angles Uses the z, then y, then x convention above Parameters ---------- z : scalar
utils/eulerangles.py:271
↓ 1 callersFunctioneval_one_epoch
ops: dict mapping from string to tf ops
train.py:216
↓ 1 callersFunctioneval_one_epoch
(sess, ops, num_votes=1, topk=1)
evaluate.py:90
↓ 1 callersFunctioneval_one_epoch
ops: dict mapping from string to tf ops
sem_seg/train.py:232
↓ 1 callersFunctioneval_one_epoch
(sess, ops, room_path, out_data_label_filename, out_gt_label_filename)
sem_seg/batch_inference.py:88
↓ 1 callersFunctioneval_one_epoch
(epoch_num)
part_seg/train.py:281
↓ 1 callersFunctionevaluate
(num_votes)
evaluate.py:56
↓ 1 callersFunctionevaluate
()
sem_seg/batch_inference.py:39
↓ 1 callersFunctionget_bn_decay
(batch)
train.py:83
↓ 1 callersFunctionget_bn_decay
(batch)
sem_seg/train.py:113
↓ 1 callersFunctionget_learning_rate
(batch)
train.py:73
↓ 1 callersFunctionget_learning_rate
(batch)
sem_seg/train.py:103
↓ 1 callersFunctionget_model
Classification PointNet, input is BxNx3, output Bx40
models/pointnet_cls.py:18
↓ 1 callersFunctionget_model
Classification PointNet, input is BxNx3, output BxNx50
models/pointnet_seg.py:20
↓ 1 callersFunctionget_model
Classification PointNet, input is BxNx3, output Bx40
models/pointnet_cls_basic.py:17
↓ 1 callersFunctionget_transform
Transform Net, input is BxNx3 gray image Return: Transformation matrix of size 3xK
part_seg/pointnet_part_seg.py:43
↓ 1 callersFunctionget_transform_K
Transform Net, input is BxNx1xK gray image Return: Transformation matrix of size KxK
part_seg/pointnet_part_seg.py:12
↓ 1 callersFunctioninsert_batch
(data, label, last_batch=False)
sem_seg/gen_indoor3d_h5.py:41
↓ 1 callersFunctionload_h5
(h5_filename)
provider.py:90
↓ 1 callersFunctionload_h5_data_label_seg
(h5_filename)
provider.py:99
↓ 1 callersFunctionload_pts_seg_files
(pts_file, seg_file, catid)
part_seg/test.py:102
↓ 1 callersFunctionoutput_color_point_cloud_red_blue
(data, seg, out_file)
part_seg/test.py:68
↓ 1 callersFunctionpc_augment_to_point_num
(pts, pn)
part_seg/test.py:111
↓ 1 callersFunctionpc_normalize
(pc)
part_seg/test.py:82
↓ 1 callersFunctionplaceholder_inputs
()
part_seg/train.py:86
↓ 1 callersFunctionplaceholder_inputs
()
part_seg/test.py:90
↓ 1 callersFunctionpoint_cloud_three_views
input points Nx3 numpy array (+y is up direction). return an numpy array gray image of size 500x1500.
utils/pc_util.py:156
↓ 1 callersFunctionpoint_cloud_three_views_demo
Demo for draw_point_cloud function
utils/pc_util.py:171
↓ 1 callersFunctionpoint_cloud_to_volume
input is Nx3 points. output is vsize*vsize*vsize assumes points are in range [-radius, radius]
utils/pc_util.py:41
↓ 1 callersFunctionpredict
()
part_seg/test.py:126
↓ 1 callersFunctionpyplot_draw_point_cloud
points is a Nx3 numpy array
utils/pc_util.py:183
↓ 1 callersFunctionread_ply
read XYZ point cloud from filename PLY file
utils/pc_util.py:77
↓ 1 callersFunctionroom2blocks_plus
room2block with input filename and RGB preprocessing.
sem_seg/indoor3d_util.py:204
↓ 1 callersFunctionroom2blocks_plus_normalized
room2block, with input filename and RGB preprocessing. for each block centralize XYZ, add normalized XYZ as 678 channels
sem_seg/indoor3d_util.py:227
↓ 1 callersFunctionroom2samples
Prepare whole room samples. Args: data: N x 6 numpy array, 012 are XYZ in meters, 345 are RGB in [0,1] assumes the data is s
sem_seg/indoor3d_util.py:266
↓ 1 callersFunctionroom2samples_plus_normalized
room2sample, with input filename and RGB preprocessing. for each block centralize XYZ, add normalized XYZ as 678 channels
sem_seg/indoor3d_util.py:302
↓ 1 callersFunctionsample_data
data is in N x ... we want to keep num_samplexC of them. if N > num_sample, we will randomly keep num_sample of them. if N <
sem_seg/indoor3d_util.py:110
↓ 1 callersFunctionsample_data_label
(data, label, num_sample)
sem_seg/indoor3d_util.py:127
↓ 1 callersFunctiontrain
()
train.py:93
↓ 1 callersFunctiontrain
()
sem_seg/train.py:123
↓ 1 callersFunctiontrain
()
part_seg/train.py:99
↓ 1 callersFunctiontrain_one_epoch
ops: dict mapping from string to tf ops
train.py:171
↓ 1 callersFunctiontrain_one_epoch
ops: dict mapping from string to tf ops
sem_seg/train.py:196
↓ 1 callersFunctiontrain_one_epoch
(train_file_idx, epoch_num)
part_seg/train.py:201
↓ 1 callersFunctionvolume_to_point_cloud
vol is occupancy grid (value = 0 or 1) of size vsize*vsize*vsize return Nx3 numpy array.
utils/pc_util.py:56
Method__contains__
(self, name)
utils/plyfile.py:339
Method__getitem__
(self, name)
utils/plyfile.py:342
Method__getitem__
(self, key)
utils/plyfile.py:701
Method__init__
(self, message, element=None, row=None, prop=None)
utils/plyfile.py:131
next →1–100 of 197, ranked by callers