Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
386 views

Is there any good open-source or freely available Chinese segmentation algorithm available?

As phrased in the question, I'm looking for a free and/or open-source text-segmentation algorithm for Chinese, I do understand it is a very difficult task to solve, as there are many ambiguities ...
8
votes
2answers
370 views

Objective-C - ARC - NSNumber - Segmentation Fault

I have an objective-C program and I am using ARC (Automatic Reference Counting), it throws a segmentation fault in line 23 (see program below). Question 1) Why does the segmentation fault occur ? ...
7
votes
2answers
151 views

Merging approximately equal points in dataset

I'm looking for an algorithm that can quickly run through a short (<30 element) array and merge points that are approximately equal. It'll probably end up being some sort of segmentation algorithm. ...
6
votes
3answers
132 views

How to get sentence number from input?

It seems hard to detect a sentence boundary in a text. Quotation marks like .!? may be used to delimite sentences but not so accurate as there may be ambiguous words and quotations such as U.S.A or ...
5
votes
3answers
263 views

Optimizing algorithm for segmentation through image substraction

for a project in OpenCV I would like to segment moving objects as good as possible with of course minimal noise. For this I would like to use an image substraction algorithm. I already have a running ...
5
votes
3answers
555 views

Reason for different segments in Linux on x86

So, I know that Linux uses four default segments for an x86 processor (kernel code, kernel data, user code, user data), but they all have the same base and limit (0x00000000 and 0xfffff), meaning each ...
5
votes
10answers
1k views

How to split a string into words. Ex: “stringintowords” -> “String Into Words”?

What is the right way to split a string into words ? (string doesn't contain any spaces or punctuation marks) For example: "stringintowords" -> "String Into Words" Could you please advise what ...
4
votes
1answer
168 views

Strange segmentation fault in assembly

i have written a hexdump utility in assembly language using nasm compiler and ld linker.The programe is supposed to dump the hex values for any input file.However it segfaults at one particular ...
4
votes
4answers
518 views

Malloc, free and segmentation fault

I don't understand why, in this code, the call to "free" cause a segmentation fault: #include <stdio.h> #include <string.h> #include <stdlib.h> char *char_arr_allocator(int ...
3
votes
3answers
99 views

How does x86 real-mode segments overlap help memory saving?

I'm teaching my 12 y.o. 8086 assembly language and yesterday we were talking memory, addressing and segmentation. I showed him how segments can be visualized as a sequence of overlapping 64Kb blocks ...
3
votes
3answers
123 views

Segmentation of a voice

I'm helping a farm to cluster the cocks in groups according to their crowing such that cocks with similar crowing will live together. The farmer said he wants to know whether chickens will learn any ...
3
votes
1answer
195 views

How to use glDrawVertex() function in ANSI C

I'm learning OpenGL, and now usage of function glDrawArrays() but I always get Segmntation fault on glDrawArrays call, i'm doing something wrong? /*MESH*/ struct Mesh { GLsizei numVertices; GLfloat ...
3
votes
1answer
314 views

x86-64 and far calls / jumps

Quick summary: in x86-64 mode, are far jumps as slow as in x86-32 mode? On the x86 processor, jumps fall into three types: short, with a PC-offset of +/-127 bytes (2 byte instruction) near, with a ...
2
votes
3answers
82 views

Whats wrong with the given code

I am just learning some pointers stuff in C and I happened to learn that using the * one can dereference the pointer. So I wrote the following code to check for that. #include<stdio.h> ...
2
votes
2answers
111 views

Segmentation fault in file parsing code

I am getting a segmentation fault when I try to run my program that does matrix addition. I am trying to run the program separately ~1000 times (while timing each run and writing the result to a ...
2
votes
1answer
137 views

C: Segmentation Fault on pthread_create

I am getting a Segmentation Fault error when running my program in GCC. This is quite a long program so I am only posting the parts which I believe are relevant; please let me know if more is ...
2
votes
1answer
164 views

C pthread Segmentation fault

so I was trying to make a GPGPU emulator with c & pthreads but ran into a rather strange problem which I have no idea why its occurring. The code is as below: #include <stdlib.h> #include ...
2
votes
5answers
171 views

Color segmentation

I need to segment the image by 7 colors (red, orange, yellow, green, light-blue, blue, violet) as in the rainbow. Do you know how to do it? Any papers or algorithms may be. For example it can be done ...
2
votes
1answer
292 views

Matlab Image Processing:How to Proceed to retain just the veins as black?

Hai I have this Ir image that has captured the veins under the skin.I want to process this image so as to retain just the veins as black colour and get everythin else as white .Then I want to generate ...
2
votes
1answer
2k views

mediafilesegmenter error on h.264 video encoded with ffmpeg

I'm trying to segment a video for use with http streaming on iOS devices with no luck... The idea is that this will be part of an automated process, so I'm doing the initial conversion of the video ...
2
votes
2answers
194 views

typeinfo cause a segmentation fault

I hava a segmentation fault. debug with gdb, the first frame in the stack is in the typeinfo for MyClass() does someone know something about the typeinfo ?
2
votes
1answer
255 views

why segmentation fault in this program

I'm running ubuntu on x86_32...and I keep getting segmentation fault while running this program. enter code here #include<stdio.h> #include<stddef.h> char *memcp(char *dest, const char ...
2
votes
2answers
364 views

Pure segmentation

I'm a bit confused about pure segmentation due to in my head always existed the idea of virtual memory. But as I understand pure segmentation is also imagining a virtual address space, divided in ...
2
votes
2answers
211 views

What segments does C compiled program use?

I read on OSDev wiki, that protected mode of x86 architecture allow you to create separate segments for code and data, while you cannot write into code section. That Windows (yes, this is the ...
1
vote
1answer
42 views

Vision-based Page Segmentation

I want implement a program that can do a a "Vision-based Page Segmentation". I need some guide and clue. (I need practical information and not just academical info) My preferred languages are JS ...
1
vote
2answers
52 views

Segmentation fault (core dumped)

I am relatively new on C, I am trying to run a simple program and I get this Error message: Segmentation fault (core dumped) I just want to print any value of the array bits but I can not, I'd ...
1
vote
1answer
77 views

Same input, Z3 works on Windows, but gives Segmentation Faults on Linux

I use Z3 as a back-end solver on bounded program verification. I feed same formulas to Z3 on different operating systems, Windows 7 X64 and SuSe 10.3 X64, both Z3 are version 3.2. Their input is: ...
1
vote
4answers
86 views

Segmentation fault in C program using array of char * and malloc

Silly little C program, but for the life of me I can't figure out why I keep getting a segmentation fault. I believe I'm allocating enough memory with malloc. Any help would be much appreciated. The ...
1
vote
1answer
91 views

opencv: Ways to extract an area

I'm looking for a good solution how to segment large areas of similar gray shades in opencv in a video stream. This is my image for example: To get this image i already did histogram equalization. ...
1
vote
5answers
126 views

C using strcat getting segmentation fault

Here is my code : char *name, name_log="log-"; ------getting 'name' from user----- strcat(name_log, name); char ext[] = ".log"; strcat(name_log, ext); What i need to end up with is name_log = ...
1
vote
1answer
122 views

boost variant destructors results in segmentation fault

I faced a problem using a Boost variant. I have a segmentation fault when the variant gets destructed. The weird thing is that this segmentation fault occurs only when I do not activate the ...
1
vote
2answers
299 views

K means clustering and Matlab

I need to use the kmeans function on a rgb image. Each element of the algorithm need to have 3 dimensions, one for each channel of the image. The number of elements will be the total amount of pixels ...
1
vote
8answers
180 views

Segmentation fault when running, but success when debugging

I have encountered a wired segmentation fault. I am developing a software in C using Eclipse CDT. When running my program on the terminal (Ubuntu 10, 64bits), it simply reports "Segmentation fault". ...
1
vote
1answer
127 views

Getting C++ Segmentation Fault error in recursive n-queen program

Basically, I have to write a basic program that solves the n-queen problem, which I have done, but it throws a segmentation fault if I input any number >=11. From what I have read online, this error ...
1
vote
4answers
97 views

Newbie: Segmentation fault

Newbie to c coding. Segmentation fault...i'm not sure what's causing it. Also, when passing the member pname into the function get_names, am I doing this correctly, or is there a better way of doing ...
1
vote
3answers
106 views

problem with OpenGL contexts

i have a program that does some GPU computing with Optional OpenGL rendering. The use dynamic is as follow: init function (init GLEW being the most relevant). load mesh from file to GPU (use ...
1
vote
2answers
63 views

Segmentation Fault Core Dumped

I am trying to implement a fairly basic program but I am getting a dumped core. Any ideas of what I am doing incorrectly? #include <stdio.h> int main(void){ char *number [] = ...
1
vote
2answers
94 views

Vector probem or element problem?

I am getting a segmentation fault in my program and gdb tells me it is in this function on the line of parent->getChildren().push_back(temp); in void Tree::add(Position& value, Node*& ...
1
vote
2answers
545 views

paging or segmentation for virtual memory, what is better?

Most OSes use paging for virtual memory. Why is this? Why not use segmentation? Is it just because of a hardware issue? Is one better than the other in certain cases? Basically if you had to choose ...
1
vote
1answer
466 views

Image segmentation in C# (line segmentation and character segmentation)

i was looking for an example for segmentation based on line and characters. but i couldn't find any helpful resource. if someone can provide me an example how to do it, it would be nice.. thanks ...
1
vote
2answers
642 views

Program received signal SIGSEGV, Segmentation fault

Ok... I am ripping my hair out... Why am I getting segmentation fauls when I am passing a string called "name" with contents "joel" into void person::setName(string newName) { personName = ...
1
vote
1answer
105 views

Visual web page segmentation

I have a task where I need to segment a web page visually so that I may be able to calculate the distance between two segments of the web page at various levels of the DOM tree. In the simple way I ...
1
vote
2answers
244 views

Segmentation fault c++

When I run my program, I get the Segmentation Fault error. I believe it is coming from how I am using the array "string *words" which is privately declared in the class definition. I use it here in ...
1
vote
1answer
234 views

PHP and Apache Segmentation Fault with large variable size

I seem to be having a really weird problem. I have a single variable (string) where I am storing some data. As soon as the data stored in that variable exceeds 2KB, Apache Seg faults and PHP returns ...
1
vote
1answer
537 views

MATLAB color segmentation

I have to write this function in matlab to color segment an image based on euclidean or mahalanobis distance. You pass in the training data for euclidean, training data and cov matrix for mahalobis. ...
1
vote
1answer
1k views

image segmentation techniques

I am working on a computer vision application and I am stuck at a conceptual roadblock. I need to recognize a set of logos in a video, and so far I have been using feature matching methods like SIFT ...
1
vote
3answers
263 views

stanford parse bash script error - linux bash

Can someone help me check my bash script? i'm trying to feed a directory of .txt files to the stanford parser (http://nlp.stanford.edu/software/pos-tagger-faq.shtml) but i can't get it to work. i'm ...
1
vote
1answer
293 views

Segmentation fault in overloaded operator>>

I'm trying to write code for an orthogonal linked sparse matrix. Here's the question: An alternative linked representation for sparse matrices uses nodes that have the fields down, right, row, col, ...
1
vote
1answer
263 views

best Segmentation algorithm

I'm trying to develop a system, which recognizes various objects present in an image based on their primitive features like texture, shape & color. The first stage of this process is to extract ...
1
vote
1answer
100 views

x86 Segmentation in User-Mode

Is it possible to use segmented memory in x86 when you have a program running in user-mode? If so, are there any tools (e.g. C/C++ compilers) to facilitate this? It seems to be a really powerful ...

1 2 3